We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7912088 commit 42ca44fCopy full SHA for 42ca44f
2 files changed
tests/conftest.py
@@ -2,7 +2,7 @@
2
3
import pytest
4
5
-import gopy.app
+import pygoroutine.app
6
7
8
@pytest.fixture(scope="session", autouse=True)
@@ -21,5 +21,5 @@ def manage_global_goroutine_manager():
21
22
# The code after the 'yield' runs at the very end of the test session.
23
print("\nShutting down global goroutine manager...")
24
- if gopy.app._default_manager._is_running:
25
- gopy.app._default_manager.shutdown()
+ if pygoroutine.app._default_manager._is_running:
+ pygoroutine.app._default_manager.shutdown()
tests/test_app.py
@@ -2,6 +2,7 @@
import time
+
from pygoroutine import GoroutineManager
0 commit comments