We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 376b54a commit f7abe37Copy full SHA for f7abe37
examples/project-pikachu/test_http_pokemon.py
@@ -25,13 +25,12 @@
25
import time
26
from pathlib import Path
27
28
-# Add both src and examples to path
+# Add src to path
29
project_root = Path(__file__).parent.parent.parent
30
-sys.path.insert(0, str(project_root / "src")) # For core
31
-sys.path.insert(0, str(project_root / "examples/project-pikachu")) # For poke_env
+sys.path.insert(0, str(project_root / "src"))
32
33
-from poke_env.client import PokemonEnv
34
-from poke_env.models import PokemonAction
+from envs.pokemon_env.client import PokemonEnv
+from envs.pokemon_env.models import PokemonAction
35
36
37
def test_health_check(base_url: str):
0 commit comments