Skip to content

Commit

Permalink
edit pip requirements in githubactions
Browse files Browse the repository at this point in the history
  • Loading branch information
ericfell committed Oct 30, 2023
1 parent fcc9d63 commit 70746cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
- name: Run tests and collect coverage
run: pytest --cov=rfbzero tests/
run: python -m pytest --cov

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4-beta
Expand Down
2 changes: 1 addition & 1 deletion tests/test_crossover.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import numpy as np

#from rfbzero.rfbzero.crossover import Crossover
from rfbzero.crossover import Crossover # uncomment here when running test harness
from crossover import Crossover # uncomment here when running test harness


class TestClassCrossover:
Expand Down

0 comments on commit 70746cd

Please sign in to comment.