Skip to content

Commit

Permalink
Merge pull request #1207 from thibault-martinez/merge-1.1-into-2.0
Browse files Browse the repository at this point in the history
Merge 1.1 into 2.0
  • Loading branch information
thibault-martinez committed Sep 12, 2023
2 parents ae03064 + 1880194 commit c7b55f2
Show file tree
Hide file tree
Showing 128 changed files with 1,713 additions and 751 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/bindings-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ concurrency:

jobs:
lint:
name: PEP8 style check
name: Python PEP8 format
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand All @@ -63,12 +63,13 @@ jobs:
python3 -m pip install --upgrade setuptools pip wheel
python3 -m pip install tox-gh-actions
- name: Run Tox
- name: Run tox format check
working-directory: bindings/python
run: tox -e lint
run: tox -e format


test:
name: Test
name: Linter & Tests
needs: lint
if: ${{ ! github.event.schedule }}
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -111,7 +112,13 @@ jobs:
sudo apt-get update
sudo apt-get install libudev-dev libusb-1.0-0-dev
- name: Run linter for examples
if: ${{ startsWith(matrix.os, 'ubuntu-latest') }}
working-directory: bindings/python
run: tox -e lint-examples

# TODO temporarily disabled https://github.com/iotaledger/iota-sdk/issues/647
# - name: Run Tox
# - name: Run tests
# working-directory: bindings/python
# run: tox

Loading

0 comments on commit c7b55f2

Please sign in to comment.