()
| 72 | |
| 73 | |
| 74 | def test_hypergraphatt(): |
| 75 | script = os.path.join(EXAMPLE_ROOT, "hypergraphatt.py") |
| 76 | out = subprocess.run( |
| 77 | ["python", str(script), "--epochs=10"], capture_output=True |
| 78 | ) |
| 79 | assert ( |
| 80 | out.returncode == 0 |
| 81 | ), f"stdout: {out.stdout.decode('utf-8')}\nstderr: {out.stderr.decode('utf-8')}" |
| 82 | |
| 83 | |
| 84 | def test_sgc(): |