├── .gitignore ├── README.md ├── conftest.py ├── libfile.py ├── script.txt ├── test_asserts.py ├── test_capsys.py ├── test_debugging.py ├── test_discovery.py ├── test_fixture_sharing.py ├── test_fixture_teardown.py ├── test_fixtures.py ├── test_markers.py ├── test_monkeypatch.py ├── test_parameters.py ├── test_selection.py ├── test_setup_teardown.py └── test_tmpdir.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/pytest-features/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/pytest-features/HEAD/README.md -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/pytest-features/HEAD/conftest.py -------------------------------------------------------------------------------- /libfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/pytest-features/HEAD/libfile.py -------------------------------------------------------------------------------- /script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/pytest-features/HEAD/script.txt -------------------------------------------------------------------------------- /test_asserts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/pytest-features/HEAD/test_asserts.py -------------------------------------------------------------------------------- /test_capsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/pytest-features/HEAD/test_capsys.py -------------------------------------------------------------------------------- /test_debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/pytest-features/HEAD/test_debugging.py -------------------------------------------------------------------------------- /test_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/pytest-features/HEAD/test_discovery.py -------------------------------------------------------------------------------- /test_fixture_sharing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/pytest-features/HEAD/test_fixture_sharing.py -------------------------------------------------------------------------------- /test_fixture_teardown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/pytest-features/HEAD/test_fixture_teardown.py -------------------------------------------------------------------------------- /test_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/pytest-features/HEAD/test_fixtures.py -------------------------------------------------------------------------------- /test_markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/pytest-features/HEAD/test_markers.py -------------------------------------------------------------------------------- /test_monkeypatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/pytest-features/HEAD/test_monkeypatch.py -------------------------------------------------------------------------------- /test_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/pytest-features/HEAD/test_parameters.py -------------------------------------------------------------------------------- /test_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/pytest-features/HEAD/test_selection.py -------------------------------------------------------------------------------- /test_setup_teardown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/pytest-features/HEAD/test_setup_teardown.py -------------------------------------------------------------------------------- /test_tmpdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/pytest-features/HEAD/test_tmpdir.py --------------------------------------------------------------------------------