Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bjodah committed Apr 23, 2024
1 parent 74e83f3 commit 05c923f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint_python.yml
Expand Up @@ -14,10 +14,10 @@ jobs:
- run: bandit --recursive --skip B101,B102,B110,B112,B307,B404,B603,B607 .
- run: black --check . || true
- run: codespell --ignore-words-list="ans,claus,fith,nam,nd,ond,serie,te"
- run: flake8 . --count --max-complexity=66 --max-line-length=118
- run: flake8 . --count --max-complexity=66 --max-line-length=129
--show-source --statistics
- run: pip install flake8-bugbear flake8-comprehensions flake8-return flake8-simplify
- run: flake8 . --count --exit-zero --max-complexity=66 --max-line-length=118
- run: flake8 . --count --exit-zero --max-complexity=66 --max-line-length=129
--show-source --statistics
- run: isort --check-only --profile black . || true
- run: pip install setuptools
Expand Down
1 change: 0 additions & 1 deletion chempy/util/tests/test_parsing.py
Expand Up @@ -731,7 +731,6 @@ def test_formula_to_unicode_caged(species, unicode):
),
],
)

@requires(parsing_library)
def test_formula_to_html(species, html):
assert formula_to_html(species) == html
Expand Down

0 comments on commit 05c923f

Please sign in to comment.