From fa04e18d94c02ae69e22466e54f90019315a8354 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Wed, 13 Mar 2019 16:44:02 -0500 Subject: [PATCH] alternate skip --- config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.sh b/config.sh index 9df8ad5..5723607 100644 --- a/config.sh +++ b/config.sh @@ -19,5 +19,5 @@ function run_tests { python -c 'import pandas; pandas.show_versions()' # --deselect for 0.24.x # https://travis-ci.org/MacPython/pandas-wheels/builds/505474702 - python -c 'import pandas; pandas.test(extra_args=["--skip-slow", "--skip-network", "--skip-db", "-n=2", "--deselect=pandas/tests/indexes/multi/test_analytics.py::test_numpy_ufuncs", "--deselect=pandas/tests/io/test_common.py::TestCommonIOCapabilities::test_write_fspath_all"])' + python -c 'import pandas; pandas.test(extra_args=["--skip-slow", "--skip-network", "--skip-db", "-n=2", "-k -test_numpy_ufuncs", "-k -test_write_fspath_all"])' }