From e1c545aeb051f542144d6030944c421c862b2a80 Mon Sep 17 00:00:00 2001 From: Juliya Smith Date: Tue, 29 Oct 2024 11:52:58 -0500 Subject: [PATCH 1/2] chore: disable pytest eth plugin --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 196f550..67afbd8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,7 @@ include = '\.pyi?$' norecursedirs = "projects" addopts = """ -p no:ape_test + -p no:pytest_ethereum """ python_files = "test_*.py" testpaths = "tests" From ffc54e4124cf386ba39b8cc72c56128163791198 Mon Sep 17 00:00:00 2001 From: Juliya Smith Date: Tue, 29 Oct 2024 11:56:51 -0500 Subject: [PATCH 2/2] test: properly set access token --- .github/workflows/test.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index cfdb0eb..64b856f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -68,6 +68,9 @@ jobs: os: [ubuntu-latest, macos-latest] # eventually add `windows-latest` python-version: ["3.10", "3.11", "3.12"] + env: + GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} + steps: - uses: actions/checkout@v4