From 10639151a2ea77d6079992d03e7e544a7414f8f8 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Wed, 9 Aug 2023 20:13:27 +1100 Subject: [PATCH] re-enable testing on pypy --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 0a2bd43..10d5407 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -60,7 +60,7 @@ test: {% set tests_to_skip = tests_to_skip + " or test_to_datetime_format_YYYYMMDD_with_nat" %} # [ppc64le] {% set tests_to_skip = tests_to_skip + " or (TestReductions and test_median_2d)" %} # [ppc64le] {% set extra_args = extra_args + ["-k", "not (" + tests_to_skip + ")"] %} - - python -c "import pandas; pandas.test(extra_args={{ extra_args }})" # [python_impl == "cpython"] + - python -c "import pandas, sys; sys.exit(pandas.test(extra_args={{ extra_args }}))" requires: - pip - pytest >=6.0