This repository was archived by the owner on May 1, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ name: Python CI
33on :
44 push :
55 branches :
6- - master
6+ - master
77 pull_request :
88 branches :
9- - ' **'
9+ - ' **'
1010
1111jobs :
1212 run_tests :
1515 strategy :
1616 matrix :
1717 os :
18- - ubuntu-20.04
19- python-version :
20- - 3.8
21- targets : [ 'quality','main.test','docs' ]
18+ - ubuntu-20.04
19+ python-version : [3.8, '3.8', '3.12']
20+ targets : ['quality', 'main.test', 'docs']
2221
2322 steps :
2423 - uses : actions/checkout@v3
3736
3837 - name : Run Tests
3938 run : docker exec -t analytics_api_testing bash -c "cd /edx/app/analytics_api/analytics_api/
40- && export TOXENV=django42 && make test.requirements tox.requirements ${{ matrix.targets }}"
39+ && export TOXENV=django42 && make test.requirements tox.requirements ${{ matrix.targets
40+ }}"
4141
4242 - name : Run Coverage
4343 if : matrix.python-version == '3.8' && matrix.targets=='main.test'
Original file line number Diff line number Diff line change 11[tox]
22skipsdist = True
3- envlist = py38 -django{42}
3+ envlist = py{38, 312} -django{42}
44
55[testenv]
66passenv =
@@ -27,3 +27,4 @@ setenv =
2727commands =
2828 make -e -C docs/api clean
2929 make -e -C docs/api html
30+
You can’t perform that action at this time.
0 commit comments