Skip to content
This repository has been archived by the owner on Aug 19, 2024. It is now read-only.

Commit

Permalink
Inherit tester from run_all_tests
Browse files Browse the repository at this point in the history
  • Loading branch information
qstokkink committed Apr 12, 2024
1 parent 99d7e87 commit 385dc1c
Show file tree
Hide file tree
Showing 4 changed files with 99 additions and 380 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr-comment-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest] # macos-latest not tested due to crashing.
version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
version: ["3.8", "3.9", "3.10"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand All @@ -32,12 +32,12 @@ jobs:
- run: python -m pip install -r requirements.txt
- run: |
cd src
python run_all_tests.py -a
python run_unit_tests.py -a
env:
TEST_IPV8_WITH_IPV6: 0
- run: |
cd src
python run_all_tests.py -a
python run_unit_tests.py -a
env:
TEST_IPV8_WITH_IPV6: 1
- uses: actions/cache/save@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Run unit tests
run: |
cd src
python run_all_tests.py -a
python run_unit_tests.py -a
windows:
runs-on: windows-latest
steps:
Expand All @@ -35,7 +35,7 @@ jobs:
- name: Run unit tests
run: |
cd src
python run_all_tests.py -a
python run_unit_tests.py -a
- uses: actions/cache/save@v4
if: steps.restore_cache.outputs.cache-hit != 'true'
with:
Expand All @@ -56,5 +56,5 @@ jobs:
- name: Run unit tests
run: |
cd src
python run_all_tests.py -a
python run_unit_tests.py -a
Loading

0 comments on commit 385dc1c

Please sign in to comment.