We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d298477 commit 18ca871Copy full SHA for 18ca871
.github/workflows/integration.yml
@@ -59,8 +59,13 @@ jobs:
59
pip install .
60
61
- name: Test
62
+ shell: bash
63
run: |
- python -m Crypto.SelfTest
64
+ if [[ -f .separate_namespace ]]; then
65
+ python -m Cryptodome.SelfTest
66
+ else
67
+ python -m Crypto.SelfTest
68
+ fi
69
70
build_python_27:
71
# GitHub Actions will not setup Python 2.7 since June 2023
@@ -114,9 +119,13 @@ jobs:
114
119
python -m pip install .
115
120
116
121
122
117
123
118
-
124
125
126
127
128
129
mypy:
130
runs-on: ubuntu-latest
131
steps:
0 commit comments