Skip to content

Commit b41a165

Browse files
committed
do not test 3.10 yet
1 parent 3ccfcc6 commit b41a165

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ jobs:
2222
- name: Use Latest Python
2323
uses: actions/setup-python@v2
2424
with:
25-
python-version: "3.10"
25+
python-version: "3.9"
2626
- name: Install Python Dependencies
2727
run: pip install -r requirements/test-run.txt
2828
- name: Run Tests
29-
env: {"CI": "true"}
29+
env: { "CI": "true" }
3030
run: nox -s test_python_suite -- --headless
3131
test-python-environments:
3232
runs-on: ${{ matrix.os }}
3333
strategy:
3434
matrix:
35-
python-version: ["3.7", "3.8", "3.9", "3.10"]
35+
python-version: ["3.7", "3.8", "3.9"]
3636
os: [ubuntu-latest, macos-latest, windows-latest]
3737
steps:
3838
- uses: actions/checkout@v2
@@ -47,7 +47,7 @@ jobs:
4747
- name: Install Python Dependencies
4848
run: pip install -r requirements/test-run.txt
4949
- name: Run Tests
50-
env: {"CI": "true"}
50+
env: { "CI": "true" }
5151
run: nox -s test_python -- --headless --no-cov
5252
test-docs:
5353
runs-on: ubuntu-latest
@@ -63,7 +63,7 @@ jobs:
6363
- name: Install Python Dependencies
6464
run: pip install -r requirements/test-run.txt
6565
- name: Run Tests
66-
env: {"CI": "true"}
66+
env: { "CI": "true" }
6767
run: nox -s test_docs
6868
test-javascript:
6969
runs-on: ubuntu-latest
@@ -75,5 +75,5 @@ jobs:
7575
- name: Install Python Dependencies
7676
run: pip install -r requirements/test-run.txt
7777
- name: Run Tests
78-
env: {"CI": "true"}
78+
env: { "CI": "true" }
7979
run: nox -s test_javascript

0 commit comments

Comments
 (0)