Files
modal-examples/internal/conftest.py
Charles Frye 453e66a88c force build monitor (#1074)
* add random example execution to run_example script

* add a scheduled workflow to force build a random example

* fix cron syntax

* fix YAML format for job

* turn off automount during tests

* remove old test for text-to-pokemon naming

* turn off automounting during tests

* ignore two examples that end with _test.py
2025-02-13 14:58:00 -08:00

8 lines
140 B
Python

import pytest
@pytest.fixture(autouse=True)
def disable_auto_mount(monkeypatch):
monkeypatch.setenv("MODAL_AUTOMOUNT", "0")
yield