From e035e45dcfb9f01c6c41174512aaaba6d8e55792 Mon Sep 17 00:00:00 2001 From: antazoey Date: Tue, 29 Oct 2024 12:35:15 -0500 Subject: [PATCH] test: properly set GH access token (#136) --- .github/workflows/test.yaml | 3 +++ pyproject.toml | 1 + 2 files changed, 4 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 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"