Skip to content

Commit 6d94dc2

Browse files
committed
Deleted more aws related config
1 parent cf59208 commit 6d94dc2

File tree

3 files changed

+3
-113
lines changed

3 files changed

+3
-113
lines changed

.github/workflows/scripts/trigger_tests_on_label.py

Lines changed: 0 additions & 72 deletions
This file was deleted.

.github/workflows/test-integrations-aws.yml

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ on:
99
- master
1010
- release/**
1111
- potel-base
12-
# XXX: We are using `pull_request_target` instead of `pull_request` because we want
13-
# this to run on forks with access to the secrets necessary to run the test suite.
14-
# Prefer to use `pull_request` when possible.
1512
pull_request:
1613
# Cancel in progress workflows on pull_requests.
1714
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
@@ -20,39 +17,11 @@ concurrency:
2017
cancel-in-progress: true
2118
permissions:
2219
contents: read
23-
# `write` is needed to remove the `Trigger: tests using secrets` label
24-
pull-requests: write
2520
env:
26-
SENTRY_PYTHON_TEST_AWS_ACCESS_KEY_ID: ${{ secrets.SENTRY_PYTHON_TEST_AWS_ACCESS_KEY_ID }}
27-
SENTRY_PYTHON_TEST_AWS_SECRET_ACCESS_KEY: ${{ secrets.SENTRY_PYTHON_TEST_AWS_SECRET_ACCESS_KEY }}
2821
BUILD_CACHE_KEY: ${{ github.sha }}
2922
CACHED_BUILD_PATHS: |
3023
${{ github.workspace }}/dist-serverless
3124
jobs:
32-
check-permissions:
33-
name: permissions check
34-
runs-on: ubuntu-20.04
35-
steps:
36-
- uses: actions/[email protected]
37-
with:
38-
persist-credentials: false
39-
- name: Check permissions on PR
40-
if: github.event_name == 'pull_request_target'
41-
run: |
42-
python3 -uS .github/workflows/scripts/trigger_tests_on_label.py \
43-
--repo-id ${{ github.event.repository.id }} \
44-
--pr ${{ github.event.number }} \
45-
--event ${{ github.event.action }} \
46-
--username "$ARG_USERNAME" \
47-
--label-names "$ARG_LABEL_NAMES"
48-
env:
49-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
50-
# these can contain special characters
51-
ARG_USERNAME: ${{ github.event.pull_request.user.login }}
52-
ARG_LABEL_NAMES: ${{ toJSON(github.event.pull_request.labels.*.name) }}
53-
- name: Check permissions on repo branch
54-
if: github.event_name == 'push'
55-
run: true
5625
test-aws-pinned:
5726
name: AWS (pinned)
5827
timeout-minutes: 30
@@ -66,15 +35,8 @@ jobs:
6635
# ubuntu-20.04 is the last version that supported python3.6
6736
# see https://github.com/actions/setup-python/issues/544#issuecomment-1332535877
6837
os: [ubuntu-20.04]
69-
needs: check-permissions
70-
services:
71-
docker:
72-
image: docker:dind # Docker-in-Docker
73-
options: --privileged
7438
steps:
7539
- uses: actions/[email protected]
76-
with:
77-
ref: ${{ github.event.pull_request.head.sha || github.ref }}
7840
- uses: actions/setup-python@v5
7941
with:
8042
python-version: ${{ matrix.python-version }}

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# The file (and all resulting CI YAMLs) then need to be regenerated via
1111
# "scripts/generate-test-files.sh".
1212
#
13-
# Last generated: 2025-02-18T12:57:32.874168+00:00
13+
# Last generated: 2025-02-19T12:44:40.907388+00:00
1414

1515
[tox]
1616
requires =
@@ -211,7 +211,7 @@ envlist =
211211
{py3.8,py3.10,py3.11}-ariadne-v0.20.1
212212
{py3.8,py3.11,py3.12}-ariadne-v0.22
213213
{py3.8,py3.11,py3.12}-ariadne-v0.24.0
214-
{py3.8,py3.11,py3.12}-ariadne-v0.25.2
214+
{py3.9,py3.12,py3.13}-ariadne-v0.26.0
215215

216216
{py3.6,py3.9,py3.10}-gql-v3.4.1
217217
{py3.7,py3.11,py3.12}-gql-v3.5.0
@@ -597,7 +597,7 @@ deps =
597597
ariadne-v0.20.1: ariadne==0.20.1
598598
ariadne-v0.22: ariadne==0.22
599599
ariadne-v0.24.0: ariadne==0.24.0
600-
ariadne-v0.25.2: ariadne==0.25.2
600+
ariadne-v0.26.0: ariadne==0.26.0
601601
ariadne: fastapi
602602
ariadne: flask
603603
ariadne: httpx

0 commit comments

Comments
 (0)