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.
This commit is contained in:
sobolevn 2024-10-30 17:14:22 +03:00 committed by GitHub
parent 1064141967
commit 1f16df4bfe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 20 additions and 4 deletions

View file

@ -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'

View file

@ -69,4 +69,4 @@ jobs:
--fail-on-improvement
--path-prefix="./"
- name: Tests
run: make test
run: make ci

View file

@ -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