├── .flake8 ├── .github └── workflows │ └── test.yaml ├── .gitignore ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── pytest_fixture_marker.py ├── setup.py ├── tests ├── conftest.py └── test_fixture_marker.py └── tox.ini /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=88 -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rciorba/pytest-fixture-marker/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rciorba/pytest-fixture-marker/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rciorba/pytest-fixture-marker/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rciorba/pytest-fixture-marker/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rciorba/pytest-fixture-marker/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rciorba/pytest-fixture-marker/HEAD/README.rst -------------------------------------------------------------------------------- /pytest_fixture_marker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rciorba/pytest-fixture-marker/HEAD/pytest_fixture_marker.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rciorba/pytest-fixture-marker/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rciorba/pytest-fixture-marker/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_fixture_marker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rciorba/pytest-fixture-marker/HEAD/tests/test_fixture_marker.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rciorba/pytest-fixture-marker/HEAD/tox.ini --------------------------------------------------------------------------------