Skip to content

Commit fc4cb85

Browse files
committed
Fix the pipeline
1 parent 3442997 commit fc4cb85

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/ci-tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,11 @@ jobs:
4242
python-version: ${{ matrix.python-version }}
4343

4444
- name: Test with python ${{ matrix.python-version }}
45-
run: pip install -e ".[test]" && ./test.sh
45+
run: |
46+
python -m pip install --upgrade pip
47+
pip install -e ".[test]"
48+
pip install pygments
49+
./test.sh
4650
4751
- name: Upload coverage reports
4852
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)