Skip to content

Commit

Permalink
Do not call setup.py (#477)
Browse files Browse the repository at this point in the history
* Avoid invoking `setup.py` directly

* Try running pytest as a module
  • Loading branch information
mattwthompson authored Dec 1, 2022
1 parent 7639369 commit 1e1a2d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
shell: bash -l {0}
run: |
python setup.py develop --no-deps
python -m pip install .
- name: Conda Environment Information
shell: bash -l {0}
Expand All @@ -103,7 +103,7 @@ jobs:
shell: bash -l {0}
run: |
pytest -v --cov=openff openff/evaluator/tests/ --cov-report=xml --color=yes
python -m pytest -v --cov=openff openff/evaluator/tests/ --cov-report=xml --color=yes
- name: Code coverage
uses: codecov/codecov-action@v3.1.1
Expand Down

0 comments on commit 1e1a2d0

Please sign in to comment.