Skip to content
Snippets Groups Projects
Commit 508ca3a9 authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

[conda] use pip check

parent 8865338c
No related branches found
No related tags found
1 merge request!250Use Pip
Pipeline #54671 canceled
...@@ -13,9 +13,9 @@ build: ...@@ -13,9 +13,9 @@ build:
script: script:
- cd {{ environ.get('RECIPE_DIR') + '/..' }} - cd {{ environ.get('RECIPE_DIR') + '/..' }}
{% if environ.get('BUILD_EGG') and not os.path.exists('dist') %} {% if environ.get('BUILD_EGG') and not os.path.exists('dist') %}
- python setup.py sdist --formats=zip - "{{ PYTHON }} setup.py sdist --formats=zip"
{% endif %} {% endif %}
- {{ PYTHON }} -m pip install --no-deps --ignore-installed . - "{{ PYTHON }} -m pip install . -vv"
# installs the documentation source, readme to share/doc so it is available # installs the documentation source, readme to share/doc so it is available
# during test time # during test time
- install -d "${PREFIX}/share/doc/{{ name }}" - install -d "${PREFIX}/share/doc/{{ name }}"
...@@ -56,12 +56,14 @@ requirements: ...@@ -56,12 +56,14 @@ requirements:
test: test:
requires: requires:
- pip
- sphinx_rtd_theme - sphinx_rtd_theme
- pytest - pytest
- pytest-cov - pytest-cov
imports: imports:
- {{ name }} - {{ name }}
commands: commands:
- pip check
- bdt -h - bdt -h
- bdt -? - bdt -?
- bdt --help - bdt --help
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment