Skip to content

Commit 5d12a92

Browse files
fix: use Poetry with --no-root flag for GitHub Action dependencies
- Add Poetry installation to validate-datasets workflow - Use --no-root to install dependencies without packaging the project - Run validation script with 'poetry run' to access all dependencies - Fixes ModuleNotFoundError for stopit and other dependencies when testing --describe functionality
1 parent 25b5740 commit 5d12a92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/validate-datasets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
- name: Install dependencies
3838
run: |
39-
poetry install
39+
poetry install --no-root
4040
4141
- name: Validate datasets.json
4242
run: |

0 commit comments

Comments
 (0)