summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorSamuel Leathers <sam@appliedtrust.com>2017-09-14 00:52:47 -0400
committerFranz Pletz <fpletz@fnordicwalking.de>2017-09-15 18:05:36 +0200
commita4633ca5a352af8eb01e5db48cd597a09397a776 (patch)
treed980ee713e42b0be111838e4898c14102eb836f8 /pkgs/development
parent7904499542814b8a4d04fce8dc7ca8c383c083e7 (diff)
downloadnixpkgs-a4633ca5a352af8eb01e5db48cd597a09397a776.tar
nixpkgs-a4633ca5a352af8eb01e5db48cd597a09397a776.tar.gz
nixpkgs-a4633ca5a352af8eb01e5db48cd597a09397a776.tar.bz2
nixpkgs-a4633ca5a352af8eb01e5db48cd597a09397a776.tar.lz
nixpkgs-a4633ca5a352af8eb01e5db48cd597a09397a776.tar.xz
nixpkgs-a4633ca5a352af8eb01e5db48cd597a09397a776.tar.zst
nixpkgs-a4633ca5a352af8eb01e5db48cd597a09397a776.zip
cram: fix ignored tests causing failures
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/cram/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/cram/default.nix b/pkgs/development/python-modules/cram/default.nix
index 4db709769a6..c0fc5b177e0 100644
--- a/pkgs/development/python-modules/cram/default.nix
+++ b/pkgs/development/python-modules/cram/default.nix
@@ -26,7 +26,7 @@ buildPythonPackage rec {
     #COVERAGE=${coverage}/bin/coverage $out/bin/cram tests
     #${coverage}/bin/coverage report --fail-under=100
     COVERAGE=coverage $out/bin/cram tests
-    coverage report --fail-under=100 --omit="*/_encoding.py"
+    coverage report --fail-under=100 --omit="*/_encoding.py,*/__main__.py"
   '';
 
   meta = {