We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 603f478 commit 1e6a5b6Copy full SHA for 1e6a5b6
bgcval2/_runtime_config.py
@@ -61,7 +61,9 @@ def _establish_hostname():
61
elif gethostname().find('pmpc') > -1:
62
hostname = "pml"
63
elif gethostname().find('-az') > -1:
64
- hostname = "local-test-only" # for testing on GA machine
+ hostname = "local-test-only" # for testing on GA machine (old type)
65
+ elif os.environ("hostname") == "github":
66
+ hostname = "local-test-only" # for testing on GA machine (new type)
67
# FIXME local testing only
68
elif gethostname().find('valeriu-PORTEGE-Z30-C') > -1:
69
hostname = "local-test-only" # for testing on V's laptop
0 commit comments