Skip to content

Commit

Permalink
Merge pull request #112 from LedgerHQ/xch/CI-python-check
Browse files Browse the repository at this point in the history
workflows/python_client_checks.yml: Remove useless pip install extra url
  • Loading branch information
xchapron-ledger committed Feb 9, 2024
2 parents 7d1c3c3 + 5eb4c07 commit 5c70002
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python_client_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Installing PIP dependencies
run: |
pip install pylint
pip install --extra-index-url https://test.pypi.org/simple/ -r tests/requirements.txt
pip install -r tests/requirements.txt
- name: Lint Python code
run: |
pylint --rc tests/setup.cfg tests/application_client/
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Installing PIP dependencies
run: |
pip install mypy
pip install --extra-index-url https://test.pypi.org/simple/ -r tests/requirements.txt
pip install -r tests/requirements.txt
- name: Mypy type checking
run: |
mypy tests/application_client/

0 comments on commit 5c70002

Please sign in to comment.