summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorsobolevn <mail@sobolevn.me>2024-10-30 14:14:22 (GMT)
committerGitHub <noreply@github.com>2024-10-30 14:14:22 (GMT)
commit1f16df4bfe5cfbe4ac40cc9c6d15f44bcfd99a64 (patch)
tree5e89f7b6d1da9440786d26d2f2c93619c2277845 /.github
parent1064141967a2d22c2ae9e22ae77e8c9616559947 (diff)
downloadcpython-1f16df4bfe5cfbe4ac40cc9c6d15f44bcfd99a64.zip
cpython-1f16df4bfe5cfbe4ac40cc9c6d15f44bcfd99a64.tar.gz
cpython-1f16df4bfe5cfbe4ac40cc9c6d15f44bcfd99a64.tar.bz2
gh-125669: Do not run `-ugui` tests by default on `make test` (#125730)
Adds `make ci` target for use in CI and keeping `make test` for the local development.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml2
-rw-r--r--.github/workflows/reusable-macos.yml2
-rw-r--r--.github/workflows/reusable-ubuntu.yml2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index d1e9fff..083b071 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -468,7 +468,7 @@ jobs:
- name: Display build info
run: make pythoninfo
- name: Tests
- run: xvfb-run make test
+ run: xvfb-run make ci
build_tsan:
name: 'Thread sanitizer'
diff --git a/.github/workflows/reusable-macos.yml b/.github/workflows/reusable-macos.yml
index bfa5f69..915481d 100644
--- a/.github/workflows/reusable-macos.yml
+++ b/.github/workflows/reusable-macos.yml
@@ -69,4 +69,4 @@ jobs:
--fail-on-improvement
--path-prefix="./"
- name: Tests
- run: make test
+ run: make ci
diff --git a/.github/workflows/reusable-ubuntu.yml b/.github/workflows/reusable-ubuntu.yml
index 18e2e47..f0ca6a9 100644
--- a/.github/workflows/reusable-ubuntu.yml
+++ b/.github/workflows/reusable-ubuntu.yml
@@ -105,4 +105,4 @@ jobs:
run: sudo mount "$CPYTHON_RO_SRCDIR" -oremount,rw
- name: Tests
working-directory: ${{ env.CPYTHON_BUILDDIR }}
- run: xvfb-run make test
+ run: xvfb-run make ci