Skip to content
Snippets Groups Projects
Verified Commit 262c0607 authored by Duncan Macleod's avatar Duncan Macleod
Browse files

ci: use pip install everywhere

`python setup.py install` is not exactly the same, `pip install` validates more of the metadata
parent fd10b572
No related branches found
No related tags found
1 merge request!601Updated CI to expose a bug in bilby_result for python2.7, then fixed it
......@@ -49,7 +49,7 @@ python-2.7:
stage: test
image: bilbydev/bilby-test-suite-python27
script:
- python setup.py install
- python -m pip install .
# Run tests without finding coverage
- pytest --ignore=test/utils_py3_test.py
......@@ -58,7 +58,7 @@ python-3.7:
stage: test
image: bilbydev/bilby-test-suite-python37
script:
- python setup.py install
- python -m pip install .
# Run pyflakes
- flake8 .
......@@ -86,7 +86,7 @@ scheduled-python-3.7:
only:
- schedules
script:
- python setup.py install
- python -m pip install .
# Run tests which are only done on schedule
- pytest test/example_test.py
......
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