Skip to content

Commit

Permalink
ensure compliance with ruff rules
Browse files Browse the repository at this point in the history
  • Loading branch information
wcxve committed Mar 1, 2024
1 parent 97178f1 commit c9b46aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import nox

PYTHON_VERSIONS = ["3.9", "3.10", "3.11"]
PYTHON_VERSIONS = ['3.9', '3.10', '3.11']


@nox.session(python=PYTHON_VERSIONS)
def test(session: nox.Session) -> None:
session.install(".[test]")
session.run("pytest", "--cov-report=xml", "--cov=elisa", *session.posargs)
session.install('.[test]')
session.run('pytest', '--cov-report=xml', '--cov=elisa', *session.posargs)

0 comments on commit c9b46aa

Please sign in to comment.