Skip to content

Commit

Permalink
tries fixing build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Oct 9, 2023
1 parent bfd394a commit 4a377b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ jobs:
path: ~/.ceurws
key: ceurws

- name: start neo4j
- name: start neo4j
run: |
scripts/neo4j
scripts/neo4j
- name: Run tests
run: |
Expand Down
5 changes: 1 addition & 4 deletions tests/test_volume_neo4j.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ def setUp(self, debug=False, profile=True):
def tearDown(self):
Basetest.tearDown(self)
self.neo4j.close()


def create_test_volume(self, year: int=2023) -> int:
"""
Expand All @@ -35,7 +34,6 @@ def create_test_volume(self, year: int=2023) -> int:
volume_id = volume.create_node(tx)
return volume_id


def test_volume_create_node(self):
"""
Test the create_node method of the Volume class.
Expand Down Expand Up @@ -84,5 +82,4 @@ def test_json_loading(self):
with open(Volume.default_source()) as file:
json_data = json.load(file)
self.assertIsNotNone(json_data)
pass

pass

0 comments on commit 4a377b3

Please sign in to comment.