Skip to content

Commit 56e191d

Browse files
DEV: Test Python 3.7 with cryptopgraphy provider as well (#2276)
1 parent e9241ac commit 56e191d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/github-ci.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,17 @@ jobs:
5151
5252
5353
tests:
54-
name: pytest on ${{ matrix.python-version }}
54+
name: "pytest on ${{ matrix.python-version }} (crypto-lib: ${{ matrix.use-crypto-lib }})"
5555
runs-on: ubuntu-20.04
5656
strategy:
5757
matrix:
58-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
58+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
5959
use-crypto-lib: ["cryptography"]
6060
include:
6161
- python-version: "3.6"
6262
use-crypto-lib: "pycryptodome"
6363
- python-version: "3.7"
64-
use-crypto-lib: ""
64+
use-crypto-lib: "none"
6565
steps:
6666
- name: Update APT packages
6767
run:
@@ -208,10 +208,10 @@ jobs:
208208
- name: Check Number of Downloaded Files
209209
run: |
210210
downloaded_files_count=$(find \.coverage* -type f | wc -l)
211-
if [ $downloaded_files_count -eq 7 ]; then
212-
echo "The expected number of files (7) were downloaded."
211+
if [ $downloaded_files_count -eq 8 ]; then
212+
echo "The expected number of files (8) were downloaded."
213213
else
214-
echo "ERROR: Expected 7 files, but found $downloaded_files_count files."
214+
echo "ERROR: Expected 8 files, but found $downloaded_files_count files."
215215
exit 1
216216
fi
217217

0 commit comments

Comments
 (0)