pqc/test/test_workflows.py
Thom Wiggers 32b066036d
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)
2020-10-09 15:11:23 +02:00

15 rindas
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)