/
githubmirror
/
flask
Обзор
Документация
Войти
/
githubmirror
/
flask
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
examples/javascript/tests/conftest.py
15 строк
216 B
David Baumgold
Reformat with black
06 май 2019, 23:28
06 май 2019, 23:28
025589e
Код
Авторство
О чём код?
import pytest from js_example import app @pytest.fixture(name="app") def fixture_app(): app.testing = True yield app app.testing = False @pytest.fixture def client(app): return app.test_client()