We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18692a7 commit d19d232Copy full SHA for d19d232
tensorcircuit/cloud/config.py
@@ -0,0 +1 @@
1
+tencent_base_url = "https://quantum.tencent.com/cloud/quk/"
tests/test_cloud.py
@@ -12,6 +12,10 @@
12
from tensorcircuit.cloud import apis, wrapper
13
from tensorcircuit.results import counts
14
15
+if "TC_CLOUD_TEST" not in os.environ:
16
+ pytest.skip(allow_module_level=True)
17
+ # skip on CI due to no token
18
+
19
20
def test_get_token():
21
print(apis.get_token(provider="Tencent"))
0 commit comments