run_fast_tests.py 334 B

1234567891011
  1. import subprocess
  2. import sys
  3. subprocess.check_call([sys.executable, "-m", "pytest"], cwd="state")
  4. subprocess.check_call([sys.executable, "-m", "pytest"], cwd="kernel")
  5. subprocess.check_call([sys.executable, "-m", "pytest"], cwd="interface/HUTN")
  6. subprocess.check_call([sys.executable, "-m", "pytest", "integration", "--runslow"])