You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/index.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,6 +71,17 @@ ds = open_virtual_dataset(
71
71
3. Run the test suite using `pixi run -e test run-tests` WARNING: Some tests will fail due to incomplete status of the implementation.
72
72
4. Start a shell if needed in the development environment using `pixi run -e test zsh`.
73
73
74
+
!!! tip "DVC authentication"
75
+
If you see errors like `Missing cache files` or `401 Unauthorized` when pulling test data, you may need to configure DVC credentials for the DagsHub remote. Create a `.dvc/config.local` file (which is gitignored) with your DagsHub credentials:
76
+
77
+
```bash
78
+
dvc remote modify origin --local auth basic
79
+
dvc remote modify origin --local user <your-dagshub-username>
0 commit comments