├── .env ├── .gitignore ├── .travis.yml ├── .vscode └── settings.json ├── LICENSE ├── MANIFEST.in ├── README.rst ├── VERSION ├── appveyor.yml ├── docs ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── justfile ├── poetry.lock ├── pyproject.toml ├── pytest_fastest ├── __init__.py └── git.py ├── setup.py ├── tests ├── conftest.py ├── test_git.py └── test_init.py └── tox.ini /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/README.rst -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.12 2 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/docs/make.bat -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/justfile -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest_fastest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/pytest_fastest/__init__.py -------------------------------------------------------------------------------- /pytest_fastest/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/pytest_fastest/git.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/tests/test_git.py -------------------------------------------------------------------------------- /tests/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/tests/test_init.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstrauser/pytest-fastest/HEAD/tox.ini --------------------------------------------------------------------------------