We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7009643 commit a555eb4Copy full SHA for a555eb4
.github/workflows/python_components.yml
@@ -24,12 +24,12 @@ jobs:
24
- name: Install dependencies
25
run: |
26
python -m pip install --upgrade pip
27
- if [ -f ./python_components/requirements.txt ]; then pip install -r ./python_components/requirements.txt; fi
+ if [ -f ./python_components/ci/requirements.txt ]; then pip install -r ./python_components/ci/requirements.txt; fi
28
pip install python_components/evaluation
29
python -m spacy download en_core_web_sm
30
- name: Run Linting
31
32
- ./python_components/scripts/ci_run_linting.sh "./python_components/."
+ ./python_components/ci/scripts/ci_run_linting.sh "./python_components/."
33
- name: Run Tests
34
35
pytest python_components/ -W ignore::DeprecationWarning
0 commit comments