Skip to content

Commit f6b4bcd

Browse files
committed
include init files
1 parent 27b426d commit f6b4bcd

File tree

8 files changed

+6
-3
lines changed

8 files changed

+6
-3
lines changed

.github/workflows/ci.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@ jobs:
7474
- name: Display installed python package versions
7575
run: |
7676
pip list || :
77+
- name: Install pytest
78+
run: |
79+
pip install pytest
7780
- name: Install build dependencies
7881
run: |
7982
pip install -r requirements.txt
@@ -82,4 +85,4 @@ jobs:
8285
pip list || :
8386
- name: Run unit tests
8487
run: |
85-
python3 -m unittest discover
88+
pytest

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
**/.DS_Store
22
__pycache__
3-
__*.py
4-
.pytest_cache
3+
.pytest_cache

dilithium/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from dilithium.default_parameters import Dilithium2, Dilithium3, Dilithium5

drbg/__init__.py

Whitespace-only changes.

modules/__init__.py

Whitespace-only changes.

polynomials/__init__.py

Whitespace-only changes.

tests/__init__.py

Whitespace-only changes.

utilities/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)