mirror of
https://github.com/openziti/zrok.git
synced 2025-04-11 12:58:24 +02:00
lint and re-arm the flake8 test
This commit is contained in:
parent
0851e3e560
commit
ef10caa21f
1
.flake8
1
.flake8
@ -1,6 +1,5 @@
|
|||||||
[flake8]
|
[flake8]
|
||||||
max-line-length = 120
|
max-line-length = 120
|
||||||
exclude =
|
exclude =
|
||||||
./sdk/python/sdk/**,
|
|
||||||
./build/**
|
./build/**
|
||||||
|
|
||||||
|
4
.github/workflows/build-wheels.yml
vendored
4
.github/workflows/build-wheels.yml
vendored
@ -27,7 +27,7 @@ jobs:
|
|||||||
needs: enforce_stable_semver
|
needs: enforce_stable_semver
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
working-directory: sdk/python/sdk/zrok
|
working-directory: sdk/python/src
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
@ -62,7 +62,7 @@ jobs:
|
|||||||
if: startsWith(matrix.spec.name, 'linux')
|
if: startsWith(matrix.spec.name, 'linux')
|
||||||
with:
|
with:
|
||||||
name: zrok_sdk_${{ matrix.spec.target }}
|
name: zrok_sdk_${{ matrix.spec.target }}
|
||||||
path: ${{ github.workspace }}/sdk/python/sdk/zrok/dist/*
|
path: dist/*
|
||||||
|
|
||||||
publish-testpypi:
|
publish-testpypi:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
|
7
.github/workflows/ci-build.yml
vendored
7
.github/workflows/ci-build.yml
vendored
@ -72,7 +72,7 @@ jobs:
|
|||||||
|
|
||||||
- name: python lint
|
- name: python lint
|
||||||
shell: bash
|
shell: bash
|
||||||
run: flake8 sdk/python/sdk/zrok
|
run: flake8 sdk/python/src
|
||||||
|
|
||||||
- name: solve GOBIN
|
- name: solve GOBIN
|
||||||
id: solve_go_bin
|
id: solve_go_bin
|
||||||
@ -91,6 +91,9 @@ jobs:
|
|||||||
pytest:
|
pytest:
|
||||||
|
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
working-directory: sdk/python/src
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ["3.10", "3.11", "3.12", "3.13"]
|
python-version: ["3.10", "3.11", "3.12", "3.13"]
|
||||||
@ -105,7 +108,6 @@ jobs:
|
|||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
shell: bash
|
shell: bash
|
||||||
working-directory: sdk/python/src/
|
|
||||||
run: |
|
run: |
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
@ -118,7 +120,6 @@ jobs:
|
|||||||
|
|
||||||
- name: Test with pytest
|
- name: Test with pytest
|
||||||
shell: bash
|
shell: bash
|
||||||
working-directory: sdk/python/src/
|
|
||||||
run: |
|
run: |
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
9
.gitignore
vendored
9
.gitignore
vendored
@ -16,8 +16,6 @@ node_modules/
|
|||||||
.docusaurus
|
.docusaurus
|
||||||
.cache-loader
|
.cache-loader
|
||||||
|
|
||||||
sdk/python/sdk/build/
|
|
||||||
|
|
||||||
# Misc
|
# Misc
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.env.local
|
.env.local
|
||||||
@ -39,6 +37,7 @@ yarn-error.log*
|
|||||||
sdk/nodejs/sdk/dist
|
sdk/nodejs/sdk/dist
|
||||||
|
|
||||||
# py module artifacts
|
# py module artifacts
|
||||||
*.egg-info/
|
/sdk/python/src/**/*.egg-info/
|
||||||
__pycache__/
|
/sdk/python/src/**/__pycache__/
|
||||||
.coverage
|
/.coverage
|
||||||
|
/sdk/python/src/dist/
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
from zrok import model
|
|
||||||
from zrok_api.api import ShareApi
|
from zrok_api.api import ShareApi
|
||||||
from zrok.environment.root import Root
|
from zrok.environment.root import Root
|
||||||
from zrok_api.models.auth_user import AuthUser
|
from zrok_api.models.auth_user import AuthUser
|
||||||
@ -85,6 +84,7 @@ def CreateShare(root: Root, request: model.ShareRequest) -> model.Share:
|
|||||||
# Parse the response body directly
|
# Parse the response body directly
|
||||||
res_dict = json.loads(e.body)
|
res_dict = json.loads(e.body)
|
||||||
# Create a response object with the expected fields
|
# Create a response object with the expected fields
|
||||||
|
|
||||||
class ShareResponse:
|
class ShareResponse:
|
||||||
def __init__(self, share_token, frontend_proxy_endpoints):
|
def __init__(self, share_token, frontend_proxy_endpoints):
|
||||||
self.share_token = share_token
|
self.share_token = share_token
|
||||||
|
Loading…
Reference in New Issue
Block a user