├── .coveragerc ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CHANGELOG ├── LICENSE ├── README.md ├── docs ├── Makefile ├── make.bat └── source │ ├── conf.py │ └── index.rst ├── pytest_ordering ├── __init__.py └── _version.py ├── setup.py ├── tests ├── test_misc.py └── test_ordering.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftobia/pytest-ordering/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftobia/pytest-ordering/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftobia/pytest-ordering/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- 1 | 2 | 0.6 3 | --- 4 | - #44 fix deprecation warnings 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftobia/pytest-ordering/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftobia/pytest-ordering/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftobia/pytest-ordering/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftobia/pytest-ordering/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftobia/pytest-ordering/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftobia/pytest-ordering/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /pytest_ordering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftobia/pytest-ordering/HEAD/pytest_ordering/__init__.py -------------------------------------------------------------------------------- /pytest_ordering/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.6' 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftobia/pytest-ordering/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftobia/pytest-ordering/HEAD/tests/test_misc.py -------------------------------------------------------------------------------- /tests/test_ordering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftobia/pytest-ordering/HEAD/tests/test_ordering.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftobia/pytest-ordering/HEAD/tox.ini --------------------------------------------------------------------------------