Skip to content

Commit ba7b804

Browse files
committed
Maybe?
1 parent 9b4a42c commit ba7b804

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

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

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ 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"
3533
steps:
3634
- uses: actions/checkout@v4
3735
- name: Set up Python ${{ matrix.python-version }}
@@ -43,15 +41,11 @@ jobs:
4341
pip install .[test]
4442
PIP_PATH=$(which pip)
4543
sudo $PIP_PATH install .[test]
46-
env:
47-
test_var1: "this is just a test 1"
4844
- name: Run tests
4945
run: |
50-
echo "GITHUB_ACTION=true" >> "$GITHUB_ENV"
46+
export GITHUB_ACTION=1
5147
PYTHON_PATH=$(which python)
5248
sudo $PYTHON_PATH -m coverage run --source=. -m unittest discover tests/
53-
env:
54-
test_var2: "this is just a test 2"
5549
- name: Gather coverage statistics
5650
if: ${{ always() }}
5751
run: |

0 commit comments

Comments
 (0)