mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
refactor(matplotlib): Rename tests before adding more
This commit is contained in:
parent
291a863e86
commit
fe28907ad3
7 changed files with 6 additions and 6 deletions
|
@ -128,7 +128,7 @@ in
|
|||
missing-iswheel = callTest ./missing-iswheel { };
|
||||
wheel-wheel = callTest ./wheel-wheel { };
|
||||
fancycompleter-wheel = callTest ./fancycompleter-wheel { };
|
||||
matplotlib-post-3-7 = callTest ./matplotlib-post-3-7 { };
|
||||
matplotlib-3-7 = callTest ./matplotlib-3-7 { };
|
||||
rfc3986-validator = callTest ./rfc3986-validator { };
|
||||
virtualenv-pre-20-18 = callTest ./virtualenv-pre-20-18 { };
|
||||
virtualenv-post-20-18 = callTest ./virtualenv-post-20-18 { };
|
||||
|
@ -180,7 +180,7 @@ in
|
|||
# linux-only API (AIO)
|
||||
aiopath = callTest ./aiopath { };
|
||||
# doesn't compile on darwin
|
||||
matplotlib-pre-3-7 = callTest ./matplotlib-pre-3-7 { };
|
||||
matplotlib-3-6 = callTest ./matplotlib-3-6 { };
|
||||
# the version of scipy used here doesn't build from source on darwin
|
||||
scipy1_9 = callTest ./scipy1_9 { };
|
||||
} // lib.optionalAttrs (!stdenv.isAarch64) {
|
||||
|
|
|
@ -4,7 +4,7 @@ let
|
|||
projectDir = ./.;
|
||||
};
|
||||
in
|
||||
runCommand "matplotlib-pre-3-7-test" { } ''
|
||||
runCommand "matplotlib-3-6-test" { } ''
|
||||
${env}/bin/python -c 'import matplotlib'
|
||||
touch $out
|
||||
''
|
|
@ -1,5 +1,5 @@
|
|||
[tool.poetry]
|
||||
name = "matplotlib-pre-3-7"
|
||||
name = "matplotlib-3-6"
|
||||
version = "0.1.0"
|
||||
description = ""
|
||||
authors = ["Your Name <you@example.com>"]
|
|
@ -4,7 +4,7 @@ let
|
|||
projectDir = ./.;
|
||||
};
|
||||
in
|
||||
runCommand "matplotlib-post-3-7-test" { } ''
|
||||
runCommand "matplotlib-3-7-test" { } ''
|
||||
${env}/bin/python -c 'import matplotlib'
|
||||
touch $out
|
||||
''
|
|
@ -1,5 +1,5 @@
|
|||
[tool.poetry]
|
||||
name = "matplotlib-post-3-7"
|
||||
name = "matplotlib-3-7"
|
||||
version = "0.1.0"
|
||||
description = ""
|
||||
authors = ["Your Name <you@example.com>"]
|
Loading…
Add table
Reference in a new issue