We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0afa2da commit a949e23Copy full SHA for a949e23
.github/workflows/ci.yml
@@ -42,12 +42,13 @@ jobs:
42
- name: Install Python dependencies
43
run: |
44
python -m pip install --upgrade pip
45
+ # Install test dependencies first
46
python -m pip install pytest pytest-qt pytest-xvfb
- # Install package in development mode with verbose output
47
- python -m pip install -v -e .
48
- # Install other requirements
+ # Install requirements first
49
python -m pip install -r requirements.txt
50
python -m pip install -r requirements-dev.txt
+ # Then install package in development mode
51
+ python -m pip install -v -e .
52
# List installed packages for debugging
53
python -m pip list
54
0 commit comments