Skip to content

Commit

Permalink
FIX: fixes coming from the directory change of name
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentAuriau committed Oct 31, 2023
1 parent 7bb413d commit c43d5b5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ requires-python = ">=3.8"
[tool.setuptools]
packages = [
"tests",
"python"
"pyalapin"
]
6 changes: 2 additions & 4 deletions tests/prev_engine_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@

sys.path.append("pyalapin")

import engine.engine as engine
import importlib
import engine.move as move
import pyalapin.engine.engine as engine
import pyalaping.engine.move as move
import time

importlib.reload(engine)
import player.ai_player as ai_player


Expand Down
2 changes: 1 addition & 1 deletion tests/unit_test/engine_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

sys.path.append("pyalapin")

import engine.engine as engine
import pyalapin.engine.engine as engine


def test_blocked_moves():
Expand Down
4 changes: 2 additions & 2 deletions tests/unit_test/test_material.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

sys.path.append("pyalapin")

import engine.engine as engine
import engine.material as material
import pyalapin.engine.engine as engine
import pyalapin.engine.material as material

# Add verifications about own color of piece on end cell
#
Expand Down

0 comments on commit c43d5b5

Please sign in to comment.