* 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
8 lines
140 B
Python
8 lines
140 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def disable_auto_mount(monkeypatch):
|
|
monkeypatch.setenv("MODAL_AUTOMOUNT", "0")
|
|
yield
|