Skip to content

Commit d6b8107

Browse files
authored
Test conditional workflow runs + config files cleanup (#5364)
* Test conditional workflow runs * commit that should not trigger costly workflows * commit that should trigger workflows * add pip to conda envs
1 parent ea776d6 commit d6b8107

11 files changed

+30
-21
lines changed

.coverage

-60 KB
Binary file not shown.

.coveragerc

-4
This file was deleted.

.github/workflows/arviz_compat.yml

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ on:
44
pull_request:
55
push:
66
branches: [main]
7+
paths:
8+
- ".github/workflows/*"
9+
- "pymc/**"
10+
- "setup.py"
11+
- "pyproject.toml"
12+
- "buildosx"
13+
- "conda-envs/**"
14+
- "codecov.yml"
715

816
jobs:
917
pytest:

.github/workflows/jaxtests.yml

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ on:
44
pull_request:
55
push:
66
branches: [main]
7+
paths:
8+
- ".github/workflows/*"
9+
- "pymc/**"
10+
- "setup.py"
11+
- "pyproject.toml"
12+
- "buildosx"
13+
- "conda-envs/**"
14+
- "codecov.yml"
715

816
jobs:
917
pytest:

.github/workflows/pytest.yml

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ on:
44
pull_request:
55
push:
66
branches: [main]
7+
paths:
8+
- ".github/workflows/*"
9+
- "pymc/**"
10+
- "setup.py"
11+
- "pyproject.toml"
12+
- "buildosx"
13+
- "conda-envs/**"
14+
- "codecov.yml"
715

816

917
# Tests are split into multiple jobs to accelerate the CI.

build_and_deploy_docs.sh

-10
This file was deleted.

codecov.yml

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ coverage:
2121
threshold: 1%
2222
base: auto
2323

24+
ignore:
25+
- "pymc/tests/*"
26+
2427
comment:
2528
layout: "reach, diff, flags, files"
2629
behavior: default

conda-envs/environment-dev-py37.yml

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ dependencies:
1616
- numpy>=1.15.0,<1.22.0
1717
- numpydoc>=0.9
1818
- pandas>=0.24
19+
- pip
1920
- pre-commit>=2.8.0
2021
- pydata-sphinx-theme
2122
- pytest-cov>=2.5

conda-envs/environment-dev-py38.yml

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ dependencies:
1616
- numpy>=1.15.0,<1.22.0
1717
- numpydoc>=0.9
1818
- pandas>=0.24.0
19+
- pip
1920
- pre-commit>=2.8.0
2021
- pydata-sphinx-theme
2122
- pytest-cov>=2.5

conda-envs/environment-dev-py39.yml

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ dependencies:
1616
- numpy>=1.15.0,<1.22.0
1717
- numpydoc>=0.9
1818
- pandas
19+
- pip
1920
- pre-commit>=2.8.0
2021
- pydata-sphinx-theme
2122
- pytest-cov>=2.5

fast_build_docs.sh

-7
This file was deleted.

0 commit comments

Comments
 (0)