Skip to content

Commit

Permalink
fix pep8 and workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cehbrecht committed Oct 11, 2023
1 parent 466490d commit ed63c2c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ jobs:
if: matrix.python-version == 3.7
- name: Build docs 🏗️
run: make docs
if: matrix.python-version == 3.7
if: false

4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
include_package_data=True,
install_requires=requirements,
setup_requires=setup_requirements,
test_suite = 'tests',
tests_require = test_requirements,
test_suite='tests',
tests_require=test_requirements,
extras_require={
"dev": dev_reqs, # pip install ".[dev]"
},
Expand Down
6 changes: 3 additions & 3 deletions tests/test_shearwater.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

import pytest

from click.testing import CliRunner
# from click.testing import CliRunner

import shearwater
from shearwater import cli
# import shearwater
# from shearwater import cli


@pytest.fixture
Expand Down

0 comments on commit ed63c2c

Please sign in to comment.