├── .gitignore ├── AUTHORS.md ├── CHANGES.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── examples ├── fixme │ ├── app.py │ ├── requirements.txt │ ├── settings.py │ └── tests │ │ └── test_app.py └── simple │ ├── app.py │ ├── requirements.txt │ ├── settings.py │ └── tests │ └── test_app.py ├── flask_pytest └── __init__.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyespo/flask-pytest/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyespo/flask-pytest/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyespo/flask-pytest/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyespo/flask-pytest/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyespo/flask-pytest/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyespo/flask-pytest/HEAD/README.md -------------------------------------------------------------------------------- /examples/fixme/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyespo/flask-pytest/HEAD/examples/fixme/app.py -------------------------------------------------------------------------------- /examples/fixme/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==0.10.1 2 | ../.. 3 | -------------------------------------------------------------------------------- /examples/fixme/settings.py: -------------------------------------------------------------------------------- 1 | DEBUG = True 2 | 3 | FLASK_PYTEST_QUIET = False 4 | -------------------------------------------------------------------------------- /examples/fixme/tests/test_app.py: -------------------------------------------------------------------------------- 1 | def test_app(): 2 | assert False 3 | -------------------------------------------------------------------------------- /examples/simple/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyespo/flask-pytest/HEAD/examples/simple/app.py -------------------------------------------------------------------------------- /examples/simple/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==0.10.1 2 | ../.. 3 | -------------------------------------------------------------------------------- /examples/simple/settings.py: -------------------------------------------------------------------------------- 1 | DEBUG = True 2 | -------------------------------------------------------------------------------- /examples/simple/tests/test_app.py: -------------------------------------------------------------------------------- 1 | def test_app(): 2 | assert True 3 | -------------------------------------------------------------------------------- /flask_pytest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyespo/flask-pytest/HEAD/flask_pytest/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pytest>=2.7.0 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyespo/flask-pytest/HEAD/setup.py --------------------------------------------------------------------------------