Skip to content

Commit

Permalink
pyenv
Browse files Browse the repository at this point in the history
  • Loading branch information
avdata99 committed Nov 18, 2024
1 parent 1efd2b2 commit 9c64ef2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test-superset-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,20 @@ jobs:
pip install -e .
- name: flake8
run: python3 -m flake8 ckanext --count --show-source --max-complexity=12 --max-line-length=130 --statistics
run: |
source .venv/bin/activate
flake8 ckanext --count --show-source --max-complexity=12 --max-line-length=130 --statistics
- name: Setup extension
shell: bash
run: |
source .venv/bin/activate
ckan -c test.ini db init
# echo "Applying migrations for superset"
# ckan -c test.ini db upgrade -p superset
- name: Run tests
shell: bash
run: |
source .venv/bin/activate
pytest --ckan-ini=test.ini -v --disable-warnings ckanext/superset

0 comments on commit 9c64ef2

Please sign in to comment.