From 5bcdc49a021cb52aee07ee039160df5dd31bbf8d Mon Sep 17 00:00:00 2001 From: Philipp Schlegel Date: Thu, 17 Oct 2024 17:22:36 +0100 Subject: [PATCH] GH actions: third try to 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 3f4aaaa4..c85d02ac 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(server_address='https://global.brain-wire-test.org',datastack_name='h01_c3_flat',auth_token=os.getenv('BRAIN_WIRE_SECRET'));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',auth_token=os.getenv('BRAIN_WIRE_SECRET'));client.auth.save_token(os.getenv('BRAIN_WIRE_SECRET',overwrite=True))" python tests/test_tutorials.py