Skip to content

Commit c4afc23

Browse files
ShaharNavehJulianWgs
authored andcommitted
CI: skip tests when only files in doc/web changes (github actions) (pandas-dev#41310)
* CI: skip tests when only files in doc/web changes (github) * Fixed yaml file indent * Revert "CI: skip tests when only files in doc/web changes (github)" This reverts commit 7eaca3f. * CI: Don't run lint if only doc changes (github worklow) * CI: Don't run lint if only doc changes (azure) * Fix (ex|in)clude logic in azure templates * Fixed small "typo" * Fix location of the "path" parameter * Removed extra "trigger" * Fix for comment https://github.com/pandas-dev/pandas/pull/41310/files#r629288230 * Fix for comment https://github.com/pandas-dev/pandas/pull/41310/files#r629289631 * Fix for comment https://github.com/pandas-dev/pandas/pull/41310/files#r628420098 * Fix for comment pandas-dev#41310 (comment) * Fix for comment pandas-dev#41310 (comment) * Fix for comment pandas-dev#41310 (comment) * Only ignore on "pull_request" not on "push" * Addresing comments Ref: pandas-dev#41310 (comment) Co-authored-by: ShaharNaveh <>
1 parent e45c310 commit c4afc23

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

.github/workflows/database.yml

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
branches:
88
- master
99
- 1.2.x
10+
paths-ignore:
11+
- "doc/**"
1012

1113
env:
1214
PYTEST_WORKERS: "auto"

.github/workflows/posix.yml

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
branches:
88
- master
99
- 1.2.x
10+
paths-ignore:
11+
- "doc/**"
1012

1113
env:
1214
PYTEST_WORKERS: "auto"

.github/workflows/python-dev.yml

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
pull_request:
88
branches:
99
- master
10+
paths-ignore:
11+
- "doc/**"
1012

1113
jobs:
1214
build:

azure-pipelines.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# Adapted from https://github.com/numba/numba/blob/master/azure-pipelines.yml
22
trigger:
3-
- master
4-
- 1.2.x
3+
branches:
4+
include:
5+
- master
6+
- 1.2.x
7+
paths:
8+
exclude:
9+
- 'doc/*'
510

611
pr:
712
- master

0 commit comments

Comments
 (0)