Reference implementations of PQC
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
367 B

  1. from pathlib import Path
  2. import helpers
  3. @helpers.skip_windows()
  4. def test_workflows_up_to_date():
  5. scriptdir = str(Path("..") / ".github" / "workflows")
  6. helpers.run_subprocess(["python3", "generate_workflows.py", "test"],
  7. working_dir=scriptdir)
  8. if __name__ == "__main__":
  9. import pytest
  10. import sys
  11. pytest.main(sys.argv)