File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 68
68
name : Upload to PyPI (test)
69
69
needs : [build_wheels, build_sdist]
70
70
runs-on : ubuntu-22.04
71
- if : github.event_name == 'push' && startsWith(github.ref_name, 'build-workflow')
71
+ if : github.repository == 'tornadoweb/tornado' && github. event_name == 'push' && startsWith(github.ref_name, 'build-workflow')
72
72
steps :
73
73
- uses : actions/download-artifact@v3
74
74
with :
86
86
name : Upload to PyPI (prod)
87
87
needs : [build_wheels, build_sdist]
88
88
runs-on : ubuntu-22.04
89
- if : github.event_name == 'push' && github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
89
+ if : github.repository == 'tornadoweb/tornado' && github. event_name == 'push' && github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
90
90
steps :
91
91
- uses : actions/download-artifact@v3
92
92
with :
Original file line number Diff line number Diff line change @@ -807,6 +807,7 @@ def test_client_ping(self):
807
807
response = yield ws .read_message ()
808
808
self .assertEqual (response , "got ping" )
809
809
# TODO: test that the connection gets closed if ping responses stop.
810
+ ws .close ()
810
811
811
812
812
813
class ManualPingTest (WebSocketBaseTestCase ):
You can’t perform that action at this time.
0 commit comments