Skip to content

Commit 890a03e

Browse files
authored
Unskip typeguard tests in the third-party workflow (python#235)
1 parent a128329 commit 890a03e

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/third_party.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,16 @@ jobs:
154154
155155
typeguard:
156156
name: typeguard tests
157-
if: false # TODO: unskip when typeguard's tests pass on typing_extensions>=4.6.0
157+
if: >-
158+
# if 'schedule' was the trigger,
159+
# don't run it on contributors' forks
160+
${{
161+
github.event_name != 'schedule'
162+
|| (
163+
github.repository == 'python/typing_extensions'
164+
&& github.event_name == 'schedule'
165+
)
166+
}}
158167
strategy:
159168
fail-fast: false
160169
matrix:

0 commit comments

Comments
 (0)