├── .gitignore ├── .pre-commit-config.yaml ├── Makefile ├── README.md ├── pyproject.toml ├── pytest_speed ├── __init__.py ├── benchmark.py ├── cli.py ├── save.py ├── utils.py └── version.py └── tests ├── __init__.py ├── requirements-linting.txt └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/pytest-speed/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/pytest-speed/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/pytest-speed/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/pytest-speed/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/pytest-speed/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest_speed/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/pytest-speed/HEAD/pytest_speed/__init__.py -------------------------------------------------------------------------------- /pytest_speed/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/pytest-speed/HEAD/pytest_speed/benchmark.py -------------------------------------------------------------------------------- /pytest_speed/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/pytest-speed/HEAD/pytest_speed/cli.py -------------------------------------------------------------------------------- /pytest_speed/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/pytest-speed/HEAD/pytest_speed/save.py -------------------------------------------------------------------------------- /pytest_speed/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/pytest-speed/HEAD/pytest_speed/utils.py -------------------------------------------------------------------------------- /pytest_speed/version.py: -------------------------------------------------------------------------------- 1 | VERSION = '0.3.3' 2 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/requirements-linting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/pytest-speed/HEAD/tests/requirements-linting.txt -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/pytest-speed/HEAD/tests/requirements.txt --------------------------------------------------------------------------------