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 0ade685 commit 9fc005bCopy full SHA for 9fc005b
.github/workflows/test.yml
@@ -21,14 +21,13 @@ jobs:
21
with:
22
python-version: '3.11'
23
24
- - name: Install just commander and uv
+ - name: Install just commander
25
run: |
26
sudo apt-get update
27
sudo apt-get install -y just
28
- curl -LsSf https://astral.sh/uv/install.sh | sh
29
30
- name: Install dependencies
31
- run: uv pip install --python=$(which python3) -r dev-requirements.txt
+ run: python3 -m pip install -r dev-requirements.txt
32
33
- name: Lint with black
34
run: black --line-length 125 . --check
@@ -48,8 +47,5 @@ jobs:
48
47
timeout: 120000
49
interval: 500
50
51
- - name: Install pytest
52
- run: python3 -m pip install pytest
53
-
54
- name: Test with unittest
55
run: cd src; python3 -m pytest
0 commit comments