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 b902317
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: ./.github/actions/install-python-and-package
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 b902317

Please sign in to comment.