Skip to content

Commit

Permalink
fix pytest file search
Browse files Browse the repository at this point in the history
  • Loading branch information
knikolaou committed May 13, 2024
1 parent b7a3c4e commit 3764ecb
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CI/unit_tests/measurements/test_base_measurement.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import numpy as np
import pytest

from papyrus.measurements.base_measurement import BaseMeasurement
from papyrus.measurements import BaseMeasurement


class DummyMeasurement(BaseMeasurement):
Expand Down
2 changes: 1 addition & 1 deletion CI/unit_tests/neural_state/test_neural_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
-------
"""

from papyrus.neural_state.neural_state import NeuralState
from papyrus.neural_state import NeuralState


class TestNeuralState:
Expand Down
2 changes: 1 addition & 1 deletion CI/unit_tests/neural_state/test_neural_state_creator.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

import numpy as np

from papyrus.neural_state.neural_state_creator import NeuralStateCreator
from papyrus.neural_state import NeuralStateCreator


class TestNeuralStateCreator:
Expand Down
3 changes: 2 additions & 1 deletion papyrus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@
papyrus measurements api.
"""

from papyrus import measurements, utils
from papyrus import measurements, neural_state, utils

__all__ = [
measurements.__name__,
utils.__name__,
neural_state.__name__,
]
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ keywords = ["neural networks", "artificial intelligence"]
license = {file = "LICENSE"}

version = "0.0.1"

[tool.pytest.ini_options]
pythonpath = ["papyrus",]

0 comments on commit 3764ecb

Please sign in to comment.