File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 3030 os : [ubuntu-latest] # , mac-latest]
3131 python-version : ["3.11", "3.12", "3.13"]
3232 runs-on : ${{ matrix.os }}
33+ env :
34+ test_var0 : " this is just a test 0"
3335 steps :
3436 - uses : actions/checkout@v4
3537 - name : Set up Python ${{ matrix.python-version }}
@@ -41,11 +43,15 @@ jobs:
4143 pip install .[test]
4244 PIP_PATH=$(which pip)
4345 sudo $PIP_PATH install .[test]
46+ env :
47+ test_var1 : " this is just a test 1"
4448 - name : Run tests
4549 run : |
4650 echo "GITHUB_ACTION=true" >> "$GITHUB_ENV"
4751 PYTHON_PATH=$(which python)
4852 sudo $PYTHON_PATH -m coverage run --source=. -m unittest discover tests/
53+ env :
54+ test_var2 : " this is just a test 2"
4955 - name : Gather coverage statistics
5056 if : ${{ always() }}
5157 run : |
You can’t perform that action at this time.
0 commit comments