Skip to content

Commit

Permalink
fixing problem with 'blinker' alredy installed in the docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
fonhorst committed Jul 4, 2023
1 parent 3030288 commit 0efef50
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,15 @@ jobs:
python -m pip install --upgrade pip
python -m pip install flake8 pytest poetry
poetry export -f requirements.txt --without-hashes --with dev > requirements.txt
pip install -r requirements.txt
pip install --ignore-installed -r requirements.txt
- name: Download english corpus
run: python -m spacy download en_core_web_sm
- name: set pythonpath
working-directory: src
run: |
echo "PYTHONPATH=." >> $GITHUB_ENV
- name: Lint with flake8
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- name: Run test code
working-directory: src
run: python ../examples/full_pipeline_example.py
run: python examples/full_pipeline_example.py
- run: echo "🍏 This job's status is ${{ job.status }}."

0 comments on commit 0efef50

Please sign in to comment.