From 9c9211f5aa2d0c8aba8c7640df645635fe8d28b1 Mon Sep 17 00:00:00 2001 From: kevinheavey Date: Thu, 8 Aug 2024 15:06:44 +0400 Subject: [PATCH] remove nox --- .github/workflows/nox.yml | 24 ------------------------ noxfile.py | 20 -------------------- 2 files changed, 44 deletions(-) delete mode 100644 .github/workflows/nox.yml delete mode 100644 noxfile.py diff --git a/.github/workflows/nox.yml b/.github/workflows/nox.yml deleted file mode 100644 index 74af683c..00000000 --- a/.github/workflows/nox.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: nox -on: - push: - branches: [main] - pull_request: - branches: [main] - -jobs: - nox: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.7", "3.8", "3.9", "3.10"] - steps: - - uses: actions/checkout@v2 - - - name: Set up Python - uses: actions/setup-python@v1 - with: - python-version: ${{ matrix.python-version }} - - - name: Install nox - run: pip install nox - - run: nox diff --git a/noxfile.py b/noxfile.py deleted file mode 100644 index 6d5732d0..00000000 --- a/noxfile.py +++ /dev/null @@ -1,20 +0,0 @@ -# type: ignore -import nox - - -@nox.session -def python(session): - session.install( - "pytest", - "pytest-asyncio", - "maturin", - "sphinx", - "based58", - "pybip39", - "typing-extensions", - "jsonalias", - "myst-parser", - "mnemonic", - ) - session.install(".", "--no-build-isolation") - session.run("make", "test", external=True)