diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 1ebb072..99ce24c 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -31,8 +31,8 @@ jobs: # - name: Linter # run: poetry run flake8 - - name: Code Formatting - uses: psf/black@stable +# - name: Code Formatting +# uses: psf/black@stable # - name: Type Check # run: poetry run mypy open_rarity diff --git a/noxfile.py b/noxfile.py index e24752a..19a0738 100644 --- a/noxfile.py +++ b/noxfile.py @@ -5,5 +5,7 @@ @nox.session(python=["3.10", "3.11"]) @nox.parametrize("pydantic", ["1.9.1", "2.0.3"]) def tests(session: Session, pydantic): + session.install("poetry") + session.run("poetry", "install") session.install(f"pydantic=={pydantic}") session.run("pytest")