File tree 1 file changed +6
-6
lines changed 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -22,17 +22,17 @@ jobs:
22
22
- name : Use Latest Python
23
23
uses : actions/setup-python@v2
24
24
with :
25
- python-version : " 3.10 "
25
+ python-version : " 3.9 "
26
26
- name : Install Python Dependencies
27
27
run : pip install -r requirements/test-run.txt
28
28
- name : Run Tests
29
- env : {"CI": "true"}
29
+ env : { "CI": "true" }
30
30
run : nox -s test_python_suite -- --headless
31
31
test-python-environments :
32
32
runs-on : ${{ matrix.os }}
33
33
strategy :
34
34
matrix :
35
- python-version : ["3.7", "3.8", "3.9", "3.10" ]
35
+ python-version : ["3.7", "3.8", "3.9"]
36
36
os : [ubuntu-latest, macos-latest, windows-latest]
37
37
steps :
38
38
- uses : actions/checkout@v2
47
47
- name : Install Python Dependencies
48
48
run : pip install -r requirements/test-run.txt
49
49
- name : Run Tests
50
- env : {"CI": "true"}
50
+ env : { "CI": "true" }
51
51
run : nox -s test_python -- --headless --no-cov
52
52
test-docs :
53
53
runs-on : ubuntu-latest
63
63
- name : Install Python Dependencies
64
64
run : pip install -r requirements/test-run.txt
65
65
- name : Run Tests
66
- env : {"CI": "true"}
66
+ env : { "CI": "true" }
67
67
run : nox -s test_docs
68
68
test-javascript :
69
69
runs-on : ubuntu-latest
75
75
- name : Install Python Dependencies
76
76
run : pip install -r requirements/test-run.txt
77
77
- name : Run Tests
78
- env : {"CI": "true"}
78
+ env : { "CI": "true" }
79
79
run : nox -s test_javascript
You can’t perform that action at this time.
0 commit comments