Skip to content
This repository was archived by the owner on May 3, 2023. It is now read-only.

Commit 2aec980

Browse files
Skip env test (#84)
* skip * fix some warnings * fix skip
1 parent 6ddad6a commit 2aec980

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

azure/posix.yml

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ jobs:
1616
NIGHTLY_BUILD_COMMIT: "master"
1717
NIGHTLY_BUILD: "false"
1818
TEST_DEPENDS: "pytest pytest-xdist hypothesis"
19-
JUNITXML: "test-data.xml"
2019
TEST_DIR: "tmp_for_test"
2120
strategy:
2221
matrix:

azure/windows.yml

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
NIGHTLY_BUILD: "false"
1616
PYTHON_ARCH: "x64"
1717
TEST_DEPENDS: "pytest pytest-xdist hypothesis"
18-
JUNITXML: "test-data.xml"
1918
TEST_DIR: '$(Agent.WorkFolder)/tmp_for_test'
2019
strategy:
2120
matrix:

config.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,6 @@ function run_tests {
3030
pip list
3131
python -c 'import pandas; pandas.show_versions()'
3232
# Skip test_maybe_promote_int_with_int: https://github.com/pandas-dev/pandas/issues/31856
33-
python -c 'import pandas; pandas.test(extra_args=["-m not clipboard", "--skip-slow", "--skip-network", "--skip-db", "-n=2", "-k not test_maybe_promote_int_with_int"])'
33+
# test_missing_required_dependencies: https://github.com/pandas-dev/pandas/issues/33999
34+
python -c 'import pandas; pandas.test(extra_args=["-m not clipboard", "--skip-slow", "--skip-network", "--skip-db", "-n=2", "-k not test_maybe_promote_int_with_int and not test_missing_required_dependency"])'
3435
}

0 commit comments

Comments
 (0)