Skip to content

Commit

Permalink
switch off test in Jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Oct 9, 2023
1 parent d6d489f commit 6471728
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_volume_neo4j.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import json
import os
import unittest
from ceurws.volume_neo4j import Neo4j,Volume, Editor
from ceurws.location import LocationLookup
from tests.basetest import Basetest
Expand Down Expand Up @@ -49,7 +51,8 @@ def test_volume_create_node(self):
"""
volume_id=self.create_test_volume()
self.assertIsNotNone(volume_id)


@unittest.skipIf(os.getenv('JENKINS_URL'), "Skipping this test in Jenkins")
def test_editor_create_editor_node(self):
"""
Test the create_editor_node method of the Editor class.
Expand Down

0 comments on commit 6471728

Please sign in to comment.