We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1db9d5 commit 5dde33cCopy full SHA for 5dde33c
1 file changed
.github/workflows/run-tests.yml
@@ -4,8 +4,6 @@
4
name: Run Acceptance and Unit tests
5
6
on:
7
- # push:
8
- # branches: [ "main" ]
9
pull_request:
10
branches: [ "main" ]
11
@@ -26,9 +24,8 @@ jobs:
26
24
- name: Install dependencies
27
25
run: |
28
python -m pip install --upgrade pip # upgrade pip to latest version
29
- pip install ".[visualization]" # install PyProject.toml dependencies (including optional dependencies)
+ pip install . # install PyProject.toml dependencies - excludes optional dependencies (such as visualisation)!
30
- name: Test with pytest
31
32
python run_tests.py
33
- #pytest # test unit tests only
34
0 commit comments