Skip to content

Commit

Permalink
test isort
Browse files Browse the repository at this point in the history
  • Loading branch information
ywkure committed Feb 17, 2021
1 parent cbbdf1a commit 2c59be6
Showing 1 changed file with 1 addition and 29 deletions.
30 changes: 1 addition & 29 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
run: |
black . --check
flake8 .
isort . --diff
isort . --check
test:
needs: lint
runs-on: ubuntu-latest
Expand All @@ -35,31 +35,3 @@ jobs:
pip install .[dev]
- name: Test
run: pytest
# - name: Coveralls
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: |
# pip install coveralls
# coveralls --service=github
# deploy:
# needs: test
# runs-on: ubuntu-latest
# if: contains(github.ref, 'tags')
# steps:
# - uses: actions/checkout@v2
# - name: Set up Python
# uses: actions/setup-python@v1
# with:
# python-version: "3.x"
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# pip install -U setuptools setuptools_scm wheel twine
# - name: Build and publish
# env:
# TWINE_USERNAME: __token__
# TWINE_PASSWORD: ${{ secrets.TWINE_API_KEY }}
# run: |
# git tag
# python setup.py sdist bdist_wheel
# twine upload dist/*

0 comments on commit 2c59be6

Please sign in to comment.