Skip to content

Commit

Permalink
DEV: Test Python 3.7 with cryptopgraphy provider as well (#2276)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan6419846 committed Oct 29, 2023
1 parent e9241ac commit 56e191d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/github-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,17 @@ jobs:
tests:
name: pytest on ${{ matrix.python-version }}
name: "pytest on ${{ matrix.python-version }} (crypto-lib: ${{ matrix.use-crypto-lib }})"
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
use-crypto-lib: ["cryptography"]
include:
- python-version: "3.6"
use-crypto-lib: "pycryptodome"
- python-version: "3.7"
use-crypto-lib: ""
use-crypto-lib: "none"
steps:
- name: Update APT packages
run:
Expand Down Expand Up @@ -208,10 +208,10 @@ jobs:
- name: Check Number of Downloaded Files
run: |
downloaded_files_count=$(find \.coverage* -type f | wc -l)
if [ $downloaded_files_count -eq 7 ]; then
echo "The expected number of files (7) were downloaded."
if [ $downloaded_files_count -eq 8 ]; then
echo "The expected number of files (8) were downloaded."
else
echo "ERROR: Expected 7 files, but found $downloaded_files_count files."
echo "ERROR: Expected 8 files, but found $downloaded_files_count files."
exit 1
fi
Expand Down

0 comments on commit 56e191d

Please sign in to comment.