Skip to content

Commit 0826720

Browse files
authored
CI: Address non-failing warnings in CI jobs (#53139)
CI: Address non-failing warnings in the CI
1 parent c5524e4 commit 0826720

File tree

5 files changed

+5
-8
lines changed

5 files changed

+5
-8
lines changed

.github/workflows/unit-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ jobs:
232232
python -m pip install -U pip wheel setuptools meson[ninja]==1.0.1 meson-python==0.13.1
233233
python -m pip install --no-cache-dir versioneer[toml] cython numpy python-dateutil pytz pytest>=7.0.0 pytest-xdist>=2.2.0 pytest-asyncio>=0.17 hypothesis>=6.46.1
234234
python -m pip install --no-cache-dir --no-build-isolation -e .
235-
python -m pip list
235+
python -m pip list --no-cache-dir
236236
export PANDAS_CI=1
237237
python -m pytest -m 'not slow and not network and not clipboard and not single_cpu' pandas --junitxml=test-data.xml
238238
concurrency:

.pre-commit-config.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ repos:
8383
hooks:
8484
- id: pylint
8585
stages: [manual]
86+
args: [--load-plugins=pylint.extensions.redefined_loop_name]
8687
- id: pylint
8788
alias: redefined-outer-name
8889
name: Redefining name from outer scope

ci/condarc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ always_yes: true
1111
# The number seconds conda will wait for your client to establish a
1212
# connection to a remote url resource.
1313
#
14-
remote_connect_timeout_secs: 30.0
14+
remote_connect_timeout_secs: 30
1515

1616
# remote_max_retries (int)
1717
# The maximum number of retries each HTTP connection should attempt.

pandas/tests/io/parser/test_network.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -277,9 +277,7 @@ def test_read_csv_handles_boto_s3_object(self, s3_resource, tips_file):
277277
@pytest.mark.single_cpu
278278
@pytest.mark.skipif(
279279
is_ci_environment(),
280-
reason="This test can hang in our CI min_versions build "
281-
"and leads to '##[error]The runner has "
282-
"received a shutdown signal...' in GHA. GH: 45651",
280+
reason="GH: 45651: This test can hang in our CI min_versions build",
283281
)
284282
def test_read_csv_chunked_download(self, s3_resource, caplog, s3so):
285283
# 8 MB, S3FS uses 5MB chunks

pandas/tests/io/test_user_agent.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@
1919

2020
pytestmark = pytest.mark.skipif(
2121
is_ci_environment(),
22-
reason="This test can hang in our CI min_versions build "
23-
"and leads to '##[error]The runner has "
24-
"received a shutdown signal...' in GHA. GH 45651",
22+
reason="GH 45651: This test can hang in our CI min_versions build",
2523
)
2624

2725

0 commit comments

Comments
 (0)