We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a47e5d commit 33ec565Copy full SHA for 33ec565
2 files changed
.github/workflows/e2e-test.yml
@@ -172,7 +172,7 @@ jobs:
172
process-upload-report:
173
runs-on: ubuntu-latest
174
needs: [integration-tests]
175
- if: always() # && github.repository == 'linode/linode_api4-python' # Run even if integration tests fail and only on main repository
+ if: always() && github.repository == 'linode/linode_api4-python' # Run even if integration tests fail and only on main repository
176
outputs:
177
summary: ${{ steps.set-test-summary.outputs.summary }}
178
test/integration/conftest.py
@@ -383,7 +383,7 @@ def test_oauth_client(test_linode_client):
383
384
yield oauth_client
385
386
- # oauth_client.delete()
+ oauth_client.delete()
387
388
389
@pytest.fixture(scope="session")
0 commit comments