Skip to content

Commit 3e564ad

Browse files
committed
Update unit tests not to use editable installs
1 parent 35362f7 commit 3e564ad

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/unittests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
pip3 install --upgrade wheel
2626
pip3 install pyflakes
2727
pip3 install -r tests/test_requirements.txt
28-
pip3 install -e .
28+
pip3 install .
2929
3030
- name: Static code checking with pyflakes
3131
run: |

.github/workflows/unittests_codecov.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
pip3 install --upgrade wheel
3434
pip3 install pyflakes
3535
pip3 install -r tests/test_requirements.txt
36-
pip3 install -e .
36+
pip3 install .
3737
3838
- name: Static code checking with pyflakes
3939
run: |
@@ -52,4 +52,4 @@ jobs:
5252
token: ${{ secrets.CODECOV_TOKEN }}
5353
file: ./coverage.xml
5454
flags: unittests
55-
fail_ci_if_error: false
55+
fail_ci_if_error: false

0 commit comments

Comments
 (0)