Skip to content

Commit

Permalink
install package with pip
Browse files Browse the repository at this point in the history
  • Loading branch information
f-hafner committed Jan 23, 2024
1 parent 8672d4c commit a6cab2e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,12 @@ jobs:
with:
python-version: "3.11"

# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# python -m pip install flake8
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
python -m pip install -e .[dev]
- name: Run unit tests
run: |
python -m unittest discover orangecontrib/storynavigation
Expand Down

0 comments on commit a6cab2e

Please sign in to comment.