refactor(matplotlib): Rename tests before adding more

This commit is contained in:
Victor Engmark 2024-05-16 14:47:40 +12:00
parent 291a863e86
commit fe28907ad3
No known key found for this signature in database
7 changed files with 6 additions and 6 deletions

View file

@ -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) {

View file

@ -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
''

View file

@ -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>"]

View file

@ -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
''

View file

@ -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>"]