Skip to content

Commit

Permalink
Merge pull request #53 from valkey-io/issue-45
Browse files Browse the repository at this point in the history
Enable uvloop tests for "run-tests" job in CI
  • Loading branch information
ahmedsobeh authored Jul 12, 2024
2 parents 1901d72 + 14b8f57 commit 0109139
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ jobs:
invoke devenv
sleep 10 # time to settle
invoke ${{matrix.test-type}}-tests
if [[ "${{matrix.python-version}}" != pypy-* ]]; then
invoke ${{matrix.test-type}}-tests --uvloop
fi
- uses: actions/upload-artifact@v4
if: success() || failure()
Expand Down Expand Up @@ -111,7 +114,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.9', 'pypy-3.10']
test-type: ['standalone', 'cluster']
connection-type: ['hiredis', 'plain']
exclude:
Expand All @@ -137,7 +140,9 @@ jobs:
invoke devenv
sleep 10 # time to settle
invoke ${{matrix.test-type}}-tests --protocol=3
invoke ${{matrix.test-type}}-tests --uvloop --protocol=3
if [[ "${{matrix.python-version}}" != pypy-* ]]; then
invoke ${{matrix.test-type}}-tests --uvloop --protocol=3
fi
- uses: actions/upload-artifact@v4
if: success() || failure()
Expand Down

0 comments on commit 0109139

Please sign in to comment.