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 b613dd8 commit 65b760b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ jobs:
pip install .[dev]
- name: Lint
run: |
black ./ --check
flake8
black . --check
flake8 .
isort . --diff
test:
needs: lint
runs-on: ubuntu-latest
Expand Down
3 changes: 2 additions & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ gitpython
coverage
pre-commit
black
flake8
flake8
isort
4 changes: 2 additions & 2 deletions tests/test_napari_split_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
import pytest
from dask.array.core import Array
from numpy import ndarray

from . import ASSETS_PATH
from napari_split_dataset import _reader

from . import ASSETS_PATH



@pytest.mark.parametrize(
Expand Down

0 comments on commit 65b760b

Please sign in to comment.