File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ jobs:
2424 run : |
2525 python -m pip install --upgrade pip
2626 pip install pytest pytest-cov codecov
27- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
27+ pip install -r requirements.txt
2828 - name : Install adapt
2929 run : |
30- pip install -e
30+ pip install -e .
3131 - name : Test with pytest
3232 run : |
3333 pytest --cov=adapt
Original file line number Diff line number Diff line change @@ -29,10 +29,10 @@ jobs:
2929 run : |
3030 python -m pip install --upgrade pip
3131 pip install pytest
32- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
32+ pip install -r requirements.txt
3333 - name : Install adapt
3434 run : |
35- pip install -e
35+ pip install -e .
3636 - name : Test with pytest
3737 run : |
3838 python -m pytest --no-cov
You can’t perform that action at this time.
0 commit comments