From c3e4b7907a727f5ab375d1af26da4b15212420a0 Mon Sep 17 00:00:00 2001 From: Andrei Lapets Date: Sat, 26 Aug 2023 15:18:37 -0400 Subject: [PATCH] Add module execution and reference vector tests to GitHub Actions workflow. --- .github/workflows/lint-test-cover-docs.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/lint-test-cover-docs.yml b/.github/workflows/lint-test-cover-docs.yml index a620d5c..6951465 100644 --- a/.github/workflows/lint-test-cover-docs.yml +++ b/.github/workflows/lint-test-cover-docs.yml @@ -20,6 +20,8 @@ jobs: pip install -U .[lint,test] python -m pylint ge25519 test/test_ge25519.py # Check against linting rules. python -m pytest # Run tests. + python src/ge25519/ge25519.py -v # Run tests via execution. + python test/test_ge25519.py -v # Test reference bit vector generation. - name: Publish coverage results. run: | pip install -U .[coveralls]