Skip to content

Commit fd6de88

Browse files
committed
Set a default global state for 'proxy.valid'
1. We can continue to use OSG 3.5 decorators for the proxy tests: it'll be easier to find the 3.5-only tests if we label them uniformly 2. This is less intrusive than try/except blocks at each of the call sites
1 parent 640e6f4 commit fd6de88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

osgtest/library/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
# prefix each key with "COMP.", where "COMP" is a short lowercase string that
4646
# indicates which component the test belongs to, or "general." for truly cross-
4747
# cutting objects.
48-
state = {}
48+
state = {'proxy.valid': False} # TODO: Drop 'proxy.valid' after we drop support for OSG 3.5
4949

5050
class DummyClass(object):
5151
"""A class that ignores all function calls; useful for testing"""

0 commit comments

Comments
 (0)