diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2f121537..81392e5c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -101,7 +101,7 @@ jobs: needs: [code_style, rule_linter] # do not run on forks, because: # with the exception of GITHUB_TOKEN, secrets are not passed to the runner when a workflow is triggered from a forked repository. - if: "! github.event.pull_request.head.repo.fork" + if: github.event.pull_request.head.repo.full_name == github.repository strategy: fail-fast: false matrix: diff --git a/setup.py b/setup.py index b413f65a..1b819500 100644 --- a/setup.py +++ b/setup.py @@ -69,7 +69,7 @@ setuptools.setup( install_requires=requirements, extras_require={ "dev": [ - "pytest==7.3.0", + "pytest==7.3.1", "pytest-sugar==0.9.4", "pytest-instafail==0.5.0", "pytest-cov==4.0.0",