Browse Source

set PYTHONHASHSEED properly

pull/300/head
Rossen 5 years ago
committed by GitHub
parent
commit
2d7be7104f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .github/workflows/testing_initiative.yml

4
.github/workflows/testing_initiative.yml

@ -34,8 +34,10 @@ jobs:
pip install -r requirements.txt pip install -r requirements.txt
pip install coveralls pip install coveralls
- name: Run Tests - name: Run Tests
env:
PYTHONHASHSEED: "0"
run: | run: |
PYTHONHASHSEED=0 pytest --cov=steam tests pytest --cov=steam tests
- name: Coveralls - name: Coveralls
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Loading…
Cancel
Save