Skip to content

Commit

Permalink
Change to use pip install --editable rather than python setup.py develop
Browse files Browse the repository at this point in the history
  • Loading branch information
fredkingham committed Aug 26, 2022
1 parent 097a1d4 commit 628325b
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Install js dependencies
run: npm install jasmine-core@2.3.4 karma@1.5 karma-coverage@1.1.1 karma-jasmine@0.3.8 karma-firefox-launcher@2.1.0 karma-coveralls@1.1.2
- name: Install opal
run: python setup.py develop
run: pip install -e .
env:
OPAL_TEST_USE_POSTGRES: 1
- name: Install dependencies
Expand Down Expand Up @@ -76,13 +76,8 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install opal
run: python setup.py develop
run: pip install -e .
- name: Install dependencies
run: pip install -r test-requirements.txt
- name: run tests
run: opal test py





0 comments on commit 628325b

Please sign in to comment.