File tree Expand file tree Collapse file tree 2 files changed +9
-13
lines changed Expand file tree Collapse file tree 2 files changed +9
-13
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments