Skip to content

Commit

Permalink
run linters and tests on all files for now
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkahan committed Feb 1, 2024
1 parent 441477d commit 56b1f89
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
16 changes: 5 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,12 @@ jobs:
with:
gha-cache-key: cache0-py${{ matrix.python }}
named-caches-hash: ${{ hashFiles('requirements.txt') }}
- name: Get branch to compare
run: |
git remote set-branches origin 4.x
git fetch --depth 1 origin 4.x
- name: Check BUILD files
run: |
pants --changed-since=origin/4.x \
tailor --check \
update-build-files --check \
lint
pants tailor --check update-build-files --check ::
- name: Lint
run: |
pants lint ::
- name: Run tests
run: |
pants --changed-since=origin/4.x \
--changed-dependents=transitive \
test --use-coverage
pants test --use-coverage ::
2 changes: 1 addition & 1 deletion pants.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[GLOBAL]
pants_version = '2.18.1'
pants_version = '2.19.0'

backend_packages = [
'pants.backend.python',
Expand Down
1 change: 0 additions & 1 deletion vonage/src/vonage/vonage.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from http_client.auth import Auth

from http_client.http_client import HttpClient

from number_insight_v2.number_insight_v2 import NI2


Expand Down

0 comments on commit 56b1f89

Please sign in to comment.