mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-22 23:48:58 +00:00
351d17ae70
* Fix a bunch of issues in SPHINCS+ on Windows * Fix testing makefile dependencies by fixing times of common files (affected Windows testing mainly)
15 lines
367 B
Python
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)
|