Skip to content

Commit 3c985a0

Browse files
DEV: install imageio before running CI
1 parent e8b4869 commit 3c985a0

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/test_pytest.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ jobs:
4545
run: python -c "import sys, rocketpy; print(f'{rocketpy.__name__} running on Python {sys.version}')"
4646

4747
- name: Install test dependencies
48-
run: pip install -r requirements-tests.txt
48+
run: |
49+
pip install -r requirements-tests.txt
50+
pip install .[all]
4951
5052
- name: Run Unit Tests
5153
run: pytest tests/unit --cov=rocketpy

0 commit comments

Comments
 (0)