Skip to content

Commit 5df6756

Browse files
authored
Merge branch 'main' into docs-intersphinx-313
2 parents 5afb8dc + 671a337 commit 5df6756

File tree

2 files changed

+9
-13
lines changed

2 files changed

+9
-13
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,11 @@ jobs:
2424
tests:
2525
name: Run tests
2626

27+
# if 'schedule' was the trigger,
28+
# don't run it on contributors' forks
2729
if: >-
28-
# if 'schedule' was the trigger,
29-
# don't run it on contributors' forks
30-
${{
31-
github.event_name != 'schedule'
32-
|| (
33-
github.repository == 'python/typing_extensions'
34-
&& github.event_name == 'schedule'
35-
)
36-
}}
30+
github.repository == 'python/typing_extensions'
31+
|| github.event_name != 'schedule'
3732
3833
strategy:
3934
fail-fast: false

.github/workflows/third_party.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,11 @@ jobs:
140140
run: uv pip install --system "typing-extensions @ ./typing-extensions-latest"
141141
- name: List all installed dependencies
142142
run: uv pip freeze
143-
- name: Run pyanalyze tests
144-
run: |
145-
cd pyanalyze
146-
pytest pyanalyze/
143+
# TODO: re-enable
144+
# - name: Run pyanalyze tests
145+
# run: |
146+
# cd pyanalyze
147+
# pytest pyanalyze/
147148

148149
typeguard:
149150
name: typeguard tests

0 commit comments

Comments
 (0)