Skip to content

Commit 5dde33c

Browse files
committed
removed commented out comment in run-tests.yml CI/CD, fixed 'pip
install'
1 parent a1db9d5 commit 5dde33c

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
name: Run Acceptance and Unit tests
55

66
on:
7-
# push:
8-
# branches: [ "main" ]
97
pull_request:
108
branches: [ "main" ]
119

@@ -26,9 +24,8 @@ jobs:
2624
- name: Install dependencies
2725
run: |
2826
python -m pip install --upgrade pip # upgrade pip to latest version
29-
pip install ".[visualization]" # install PyProject.toml dependencies (including optional dependencies)
27+
pip install . # install PyProject.toml dependencies - excludes optional dependencies (such as visualisation)!
3028
- name: Test with pytest
3129
run: |
3230
python run_tests.py
33-
#pytest # test unit tests only
3431

0 commit comments

Comments
 (0)