You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# * is a special character in YAML so you have to quote this string
5
+
- cron: "0 0 * * *"
6
+
7
+
jobs:
8
+
stale:
9
+
runs-on: ubuntu-latest
10
+
steps:
11
+
- uses: actions/stale@v3
12
+
with:
13
+
repo-token: ${{ secrets.GITHUB_TOKEN }}
14
+
stale-pr-message: "This pull request is stale because it has been open for thirty days with no activity. Please update or respond to this comment if you're still interested in working on this."
- JOB="3.7, locale" ENV_FILE="ci/deps/travis-37-locale.yaml" PATTERN="((not slow and not network and not clipboard) or (single and db))" LOCALE_OVERRIDE="zh_CN.UTF-8" SQL="1"
49
51
services:
50
52
- mysql
51
53
- postgresql
52
54
55
+
- arch: arm64
56
+
env:
57
+
- JOB="3.7, arm64" PYTEST_WORKERS=1 ENV_FILE="ci/deps/travis-37-arm64.yaml" PATTERN="(not slow and not network and not clipboard and not arm_slow)"
58
+
53
59
- env:
54
60
# Enabling Deprecations when running tests
55
61
# PANDAS_TESTING_MODE="deprecate" causes DeprecationWarning messages to be displayed in the logs
@@ -58,13 +64,12 @@ matrix:
58
64
services:
59
65
- mysql
60
66
- postgresql
67
+
61
68
allow_failures:
69
+
# Moved to allowed_failures 2020-09-29 due to timeouts https://github.com/pandas-dev/pandas/issues/36719
62
70
- arch: arm64
63
71
env:
64
-
- JOB="3.7, arm64" PYTEST_WORKERS=8 ENV_FILE="ci/deps/travis-37-arm64.yaml" PATTERN="(not slow and not network and not clipboard)"
65
-
- dist: bionic
66
-
env:
67
-
- JOB="3.9-dev" PATTERN="(not slow and not network and not clipboard)"
72
+
- JOB="3.7, arm64" PYTEST_WORKERS=1 ENV_FILE="ci/deps/travis-37-arm64.yaml" PATTERN="(not slow and not network and not clipboard and not arm_slow)"
68
73
69
74
70
75
before_install:
@@ -78,12 +83,6 @@ before_install:
78
83
- uname -a
79
84
- git --version
80
85
- ./ci/check_git_tags.sh
81
-
# Because travis runs on Google Cloud and has a /etc/boto.cfg,
82
-
# it breaks moto import, see:
83
-
# https://github.com/spulec/moto/issues/1771
84
-
# https://github.com/boto/boto/issues/3741
85
-
# This overrides travis and tells it to look nowhere.
0 commit comments