Skip to content

Commit

Permalink
Update cache
Browse files Browse the repository at this point in the history
  • Loading branch information
adamltyson committed Jul 25, 2024
1 parent f1bb4c1 commit 09b693d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
with:
path: "$HOME/.brainglobe"
# hash on conftest in case url changes
key: brainglobe-dir${{ runner.os }}${{ hashFiles('**/conftest.py') }}
key: brainglobe-dir-${{ runner.os }}${{ hashFiles('**/conftest.py') }}


- name: Set up Python ${{ matrix.python-version }}
Expand Down
6 changes: 3 additions & 3 deletions tests/tests/test_brainmapper/test_transform_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ def sample_dataframe():
def random_json_path(tmp_path):
json_path = tmp_path / "random_json.json"
content = {
"Name": "Pooh Bear",
"Location": "100 acre wood",
"Food": "Honey",
"name": "Pooh Bear",
"location": "100 acre wood",
"food": "Honey",
}
with open(json_path, "w") as f:
json.dump(content, f)
Expand Down

0 comments on commit 09b693d

Please sign in to comment.