From 556c90b353a73c38f68eb0cc51d7f69ce9a44ba6 Mon Sep 17 00:00:00 2001 From: Wolfgang Fahl Date: Sun, 10 Mar 2024 16:37:36 +0100 Subject: [PATCH] prepares release --- ceurws/version.py | 2 +- tests/test_dblp.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ceurws/version.py b/ceurws/version.py index 6d6a5c2..e4be9c4 100644 --- a/ceurws/version.py +++ b/ceurws/version.py @@ -17,7 +17,7 @@ class Version(object): name = "CEUR-WS Volume Browser" version = ceurws.__version__ date = "2022-08-14" - updated = "2024-03-06" + updated = "2024-03-10" description = "CEUR-WS Volume browser" authors = "Tim Holzheim, Wolfgang Fahl" diff --git a/tests/test_dblp.py b/tests/test_dblp.py index 4d455ca..bdbdb3c 100644 --- a/tests/test_dblp.py +++ b/tests/test_dblp.py @@ -43,7 +43,8 @@ def setUp(self, debug=True, profile=True): self.dblpEndpoint = DblpEndpoint(self.endpointUrl,debug=self.debug) # force cache refresh self.dblpEndpoint.cache_manager.base_dir="/tmp" - self.dblpEndpoint.progress_bar=tqdm(total=100) # expected 36 secs = 100% + if not self.inPublicCI(): + self.dblpEndpoint.progress_bar=tqdm(total=100) # expected 36 secs = 100% #@unittest.skipIf(Basetest.inPublicCI(), "queries unreliable dblp endpoint") def test_getWikidataIdByVolumeNumber(self):