We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fb18eb commit a2be0edCopy full SHA for a2be0ed
1 file changed
tests/bdk/integration/test_post_message.py
@@ -11,13 +11,13 @@
11
12
NUMBER_OF_MESSAGES = 10
13
STREAM_ID = os.getenv("STREAM_ID", "put-stream-id-to-env-vars")
14
-CONFIG_PATH = "./config.yaml"
+CONFIG_PATH = "/home/runner/.symphony/config.yaml"
15
16
@fixture
17
def bot_config():
18
bot_user = os.getenv("BOT_USERNAME", "put-useranme-to-env-vars")
19
sym_host = os.getenv("SYMPHONY_HOST", "put-symphony-host-to-env-vars")
20
- key_path = "./key.pem"
+ key_path = "/home/runner/.symphony/key.pem"
21
bot_config = {"host": sym_host,
22
"bot": {"username": bot_user, "privateKey": {"path": key_path}}}
23
with open(CONFIG_PATH, "w") as config_file:
0 commit comments