Skip to content

Commit 9b4a42c

Browse files
committed
Mroe tests
1 parent bdb9d07 commit 9b4a42c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/publish-to-test-pypi.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ jobs:
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: |

0 commit comments

Comments
 (0)