Skip to content

Commit

Permalink
Try pip versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustry committed Nov 7, 2023
1 parent 936a8ef commit 5fadc7d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,20 @@ jobs:

- name: Checkout
uses: actions/[email protected]

- uses: actions/[email protected].2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/dev.txt') }}
restore-keys: |
${{ runner.os }}-pip-
#
# - uses: actions/[email protected].1
# with:
# path: ~/.cache/pip
# key: ${{ runner.os }}-pip-${{ hashFiles('requirements/dev.txt') }}
# restore-keys: |
# ${{ runner.os }}-pip-

- name: Install Python requirements
run: pip install -r requirements/dev.txt

- name: Pip freeze
run: pip freeze

- name: Run flake8
run: flake8

Expand Down
2 changes: 1 addition & 1 deletion test/test_legend.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def test_unique_symbol(client):
b = _check_request(rv)
# {'nodes': [{'icon': 'ICON', 'title': 'unique_symbol', 'type': 'layer'}], 'title': ''}
assert b['title'] == ''
assert len(b['nodes']) == 1, b
assert len(b['nod']) == 1, b


def test_categorized_symbol(client):
Expand Down

0 comments on commit 5fadc7d

Please sign in to comment.