pqc/test/test_workflows.py
Thom Wiggers 351d17ae70 Implement testing via Github actions
* Fix a bunch of issues in SPHINCS+ on Windows
* Fix testing makefile dependencies by fixing times of common files
  (affected Windows testing mainly)
2021-03-24 21:02:48 +00:00

15 lines
367 B
Python

from pathlib import Path
import helpers
@helpers.skip_windows()
def test_workflows_up_to_date():
scriptdir = str(Path("..") / ".github" / "workflows")
helpers.run_subprocess(["python3", "generate_workflows.py", "test"],
working_dir=scriptdir)
if __name__ == "__main__":
import pytest
import sys
pytest.main(sys.argv)