1
0
mirror of https://github.com/ilri/csv-metadata-quality.git synced 2024-12-22 20:22:18 +01:00

Pipfile: Add pytest-clarity to dev packages

This helps you understand the cryptic assertion error output from
pytest. For some reason pytest-clarity is a pre-release package so
we need to install it in pipenv with --pre.
This commit is contained in:
Alan Orth 2019-08-09 01:30:37 +03:00
parent 5f2e3ff4bd
commit 8fb40d96b1
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9

View File

@ -7,6 +7,7 @@ verify_ssl = true
pytest = "*"
ipython = "*"
flake8 = "*"
pytest-clarity = "*"
[packages]
pandas = "*"
@ -19,3 +20,6 @@ csv-metadata-quality = {editable = true,path = "."}
[requires]
python_version = "3.7"
[pipenv]
allow_prereleases = true