Skip to content

Commit 2541619

Browse files
Correcting install adapt
1 parent 072e0e6 commit 2541619

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/run-test-coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/run-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)