github-actions[bot] commited on
Commit
1f134d0
·
1 Parent(s): f81884a

Deploy 2a017da

Browse files

Bring the Modal GPU backend into the repo it serves

Source: https://github.com/WINTER4000/turingDNA/commit/2a017dacd2638d73a396f92cb36f95c444a9a260

Files changed (1) hide show
  1. pyproject.toml +7 -0
pyproject.toml CHANGED
@@ -29,3 +29,10 @@ digital_evolution_engine = "dee.main:run"
29
  [tool.setuptools.packages.find]
30
  include = ["dee*"]
31
  exclude = ["tests*"]
 
 
 
 
 
 
 
 
29
  [tool.setuptools.packages.find]
30
  include = ["dee*"]
31
  exclude = ["tests*"]
32
+
33
+ [tool.pytest.ini_options]
34
+ # Scope discovery to the engine's own suite. modal/ carries its own tests, run
35
+ # with its own interpreter (modal/.venv-modal, Python 3.12) against deps that
36
+ # are deliberately NOT in requirements.txt — importing them from the engine's
37
+ # environment would fail, and the deploy gate runs a bare `python -m pytest`.
38
+ testpaths = ["tests"]