From 476bee8591e7b7c38bf309d5808f63f0c08488b9 Mon Sep 17 00:00:00 2001 From: Philipp Schlegel Date: Thu, 17 Oct 2024 17:05:29 +0100 Subject: [PATCH] GH actions: fix token storage --- .github/workflows/test-tutorials.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-tutorials.yml b/.github/workflows/test-tutorials.yml index 274f023c..91eaa5f5 100644 --- a/.github/workflows/test-tutorials.yml +++ b/.github/workflows/test-tutorials.yml @@ -53,5 +53,5 @@ jobs: with: run: | python -c "import os;from caveclient import CAVEclient;client=CAVEclient();client.auth.save_token(os.getenv('CAVE_SECRET'))" - python -c "import os;from caveclient import CAVEclient;client=CAVEclient();client._server_address='https://global.brain-wire-test.org';client.auth.save_token(os.getenv('BRAIN_WIRE_SECRET'))" + python -c "import os;from caveclient import CAVEclient;client=CAVEclient(server_address='https://global.brain-wire-test.org',datastack_name='h01_c3_flat');client.auth.save_token(os.getenv('BRAIN_WIRE_SECRET'))" python tests/test_tutorials.py