Skip to content

Commit

Permalink
Fix command to run tests on pycryptodomex
Browse files Browse the repository at this point in the history
  • Loading branch information
Legrandin committed Sep 15, 2023
1 parent d298477 commit 18ca871
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,13 @@ jobs:
pip install .
- name: Test
shell: bash
run: |
python -m Crypto.SelfTest
if [[ -f .separate_namespace ]]; then
python -m Cryptodome.SelfTest
else
python -m Crypto.SelfTest
fi
build_python_27:
# GitHub Actions will not setup Python 2.7 since June 2023
Expand Down Expand Up @@ -114,9 +119,13 @@ jobs:
python -m pip install .
- name: Test
shell: bash
run: |
python -m Crypto.SelfTest
if [[ -f .separate_namespace ]]; then
python -m Cryptodome.SelfTest
else
python -m Crypto.SelfTest
fi
mypy:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 18ca871

Please sign in to comment.