From 8fb40d96b1b2dce58d800ca0c148ea58fa488c39 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Fri, 9 Aug 2019 01:30:37 +0300 Subject: [PATCH] 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. --- Pipfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Pipfile b/Pipfile index b435e67..9960c12 100644 --- a/Pipfile +++ b/Pipfile @@ -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