Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Helveg committed Mar 28, 2024
1 parent f0525a1 commit 4a1c80f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
pip install wheel
pip install -r requirements.txt --prefer-binary
pip install -e . --no-deps
pip install bsb-test==4.0.0rc3 --no-deps
- name: Run tests & coverage
run: |
coverage run -p -m unittest
Expand Down
3 changes: 1 addition & 2 deletions test/test_chunks.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import unittest

import numpy as np
from bsb.core import Scaffold
from bsb.storage import Chunk
from bsb import Chunk, Scaffold
from bsb_test import NumpyTestCase, RandomStorageFixture, skip_parallel, timeout
from bsb_test.configs import get_test_config

Expand Down
3 changes: 1 addition & 2 deletions test/test_cs.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import unittest

from bsb.core import Scaffold
from bsb.services.pool import WorkflowError
from bsb import Scaffold, WorkflowError
from bsb_test import FixedPosConfigFixture, NumpyTestCase, RandomStorageFixture

from bsb_hdf5.connectivity_set import LocationOutOfBoundsError
Expand Down
3 changes: 1 addition & 2 deletions test/test_mr.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@

import h5py
import numpy as np
from bsb.services import MPI
from bsb.storage import Storage
from bsb import MPI, Storage


class TestHandcrafted(unittest.TestCase):
Expand Down

0 comments on commit 4a1c80f

Please sign in to comment.