Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Mar 4, 2024
1 parent 0b7b456 commit e33ee13
Show file tree
Hide file tree
Showing 58 changed files with 606 additions and 606 deletions.
14 changes: 7 additions & 7 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Only enables summaries for PRs. Disables auto-review
language: 'en'
language: "en"
early_access: false
reviews:
request_changes_workflow: false
Expand All @@ -8,16 +8,16 @@ reviews:
review_status: true
collapse_walkthrough: false
path_filters:
- '!**/.xml'
- 'great_expectations/**'
- "!**/.xml"
- "great_expectations/**"
auto_review:
enabled: false
ignore_title_keywords:
- 'WIP'
- 'DO NOT MERGE'
- "WIP"
- "DO NOT MERGE"
drafts: false
base_branches:
- 'develop'
- 'feat/*'
- "develop"
- "feat/*"
chat:
auto_reply: true
82 changes: 41 additions & 41 deletions .github/teams.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,50 +2,50 @@
# NOTE - this should be kept in sync with the GX org's teams

dx:
- '@Shinnnyshinshin' # Will Shin
- '@anthonyburdi' # Anthony Burdi
- "@Shinnnyshinshin" # Will Shin
- "@anthonyburdi" # Anthony Burdi

devrel:
- '@Rachel-Reverie' # Rachel Reverie
- '@austiezr' # Austin Robinson
- '@kwcanuck' # Rob Gray
- '@kyleaton' # Kyle Eaton
- '@rachhouse' # Rachel House
- '@talagluck' # Tal Gluck
- '@r34ctor' # Nevin Tan
- "@Rachel-Reverie" # Rachel Reverie
- "@austiezr" # Austin Robinson
- "@kwcanuck" # Rob Gray
- "@kyleaton" # Kyle Eaton
- "@rachhouse" # Rachel House
- "@talagluck" # Tal Gluck
- "@r34ctor" # Nevin Tan

core:
- '@DrewHoo' # Drew Hoover
- '@Erin-GX' # Erin Kapp
- '@HaebichanGX' # Haebichan Jung
- '@JennyTee' # Jenny Terlinden
- '@Kilo59' # Gabriel Gore
- '@NathanFarmer' # Nathan Farmer
- '@Shinnnyshinshin' # Will Shin
- '@Super-Tanner' # Tanner Beam
- '@TrangPham' # Thu Pham
- '@abegong' # Abe Gong
- '@allensallinger' # Allen Sallinger
- '@anthonyburdi' # Anthony Burdi
- '@billdirks' # Bill Dirks
- '@cdkini' # Chetan Kini
- '@dctalbot' # David Talbot
- '@donaldheppner' # Don Heppner
- '@elenajdanova' # Elena Jdanova
- '@jcampbell' # James Campbell
- '@josectobar' # José Tobar
- '@joshua-stauffer' # Josh Stauffer
- '@joshzzheng' # Josh Zheng
- '@jshaikGX' # Javed Shaik
- '@lockettks' # Kim Mathieu
- '@nicgrayson' # Nic Grayson
- '@roblim' # Rob Lim
- '@rreinoldsc' # Robby Reinold
- '@sujensen' # Susan Jensen
- '@tyler-hoffman' # Tyler Hoffman
- '@wookasz' # Łukasz Lempart
- "@DrewHoo" # Drew Hoover
- "@Erin-GX" # Erin Kapp
- "@HaebichanGX" # Haebichan Jung
- "@JennyTee" # Jenny Terlinden
- "@Kilo59" # Gabriel Gore
- "@NathanFarmer" # Nathan Farmer
- "@Shinnnyshinshin" # Will Shin
- "@Super-Tanner" # Tanner Beam
- "@TrangPham" # Thu Pham
- "@abegong" # Abe Gong
- "@allensallinger" # Allen Sallinger
- "@anthonyburdi" # Anthony Burdi
- "@billdirks" # Bill Dirks
- "@cdkini" # Chetan Kini
- "@dctalbot" # David Talbot
- "@donaldheppner" # Don Heppner
- "@elenajdanova" # Elena Jdanova
- "@jcampbell" # James Campbell
- "@josectobar" # José Tobar
- "@joshua-stauffer" # Josh Stauffer
- "@joshzzheng" # Josh Zheng
- "@jshaikGX" # Javed Shaik
- "@lockettks" # Kim Mathieu
- "@nicgrayson" # Nic Grayson
- "@roblim" # Rob Lim
- "@rreinoldsc" # Robby Reinold
- "@sujensen" # Susan Jensen
- "@tyler-hoffman" # Tyler Hoffman
- "@wookasz" # Łukasz Lempart

bot:
- '@dependabot'
- '@dependabot[bot]'
- '@pre-commit-ci[bot]'
- "@dependabot"
- "@dependabot[bot]"
- "@pre-commit-ci[bot]"
66 changes: 33 additions & 33 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ on:
- ready_for_review
schedule:
# https://crontab.guru/every-3-hours
- cron: '0 */3 * * *'
- cron: "0 */3 * * *"
workflow_dispatch: # allows manual triggering with branch picker
push:
# Semantic versioning syntax defined by PyPI: https://pythonpackaging.info/07-Package-Release.html#Versioning-your-code
tags:
# Stable release syntax
- '[0-9]+.[0-9]+.[0-9]+'
- "[0-9]+.[0-9]+.[0-9]+"
# Prerelease syntax
- '[0-9]+.[0-9]+.[0-9]+a[0-9]+'
- '[0-9]+.[0-9]+.[0-9]+b[0-9]+'
- '[0-9]+.[0-9]+.[0-9]+rc[0-9]+'
- "[0-9]+.[0-9]+.[0-9]+a[0-9]+"
- "[0-9]+.[0-9]+.[0-9]+b[0-9]+"
- "[0-9]+.[0-9]+.[0-9]+rc[0-9]+"

concurrency:
# Only run one instance of this workflow in PRs, but allow multiple instances in develop.
Expand Down Expand Up @@ -59,8 +59,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
cache: 'pip'
python-version: "3.8"
cache: "pip"
cache-dependency-path: |
requirements-types.txt
reqs/requirements-dev-contrib.txt
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
GE_TEST_GCP_CREDENTIALS: ${{secrets.GE_TEST_GCP_CREDENTIALS}}
GE_TEST_GCP_PROJECT: ${{secrets.GE_TEST_GCP_PROJECT}}
GE_TEST_BIGQUERY_DATASET: ${{secrets.GE_TEST_BIGQUERY_DATASET}}
GOOGLE_APPLICATION_CREDENTIALS: 'gcp-credentials.json'
GOOGLE_APPLICATION_CREDENTIALS: "gcp-credentials.json"
# aws
AWS_ACCESS_KEY_ID: ${{secrets.AWS_ACCESS_KEY_ID}}
AWS_DEFAULT_REGION: ${{secrets.AWS_DEFAULT_REGION}}
Expand Down Expand Up @@ -151,8 +151,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
cache: 'pip'
python-version: "3.8"
cache: "pip"
cache-dependency-path: |
reqs/requirements-dev-test.txt
- name: Install dependencies
Expand All @@ -166,7 +166,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ["3.8", "3.9", "3.10", "3.11"]

runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -198,8 +198,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
cache: 'pip'
python-version: "3.8"
cache: "pip"
cache-dependency-path: |
reqs/requirements-dev-test.txt
- name: Install dependencies
Expand Down Expand Up @@ -236,8 +236,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
cache: 'pip'
python-version: "3.8"
cache: "pip"
cache-dependency-path: reqs/requirements-dev-test.txt
- name: Install dependencies
run: pip install -r reqs/requirements-dev-test.txt
Expand Down Expand Up @@ -276,7 +276,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: "3.8"
cache-dependency-path: |
reqs/requirements-dev-test.txt
setup.py
Expand Down Expand Up @@ -344,7 +344,7 @@ jobs:
- snowflake
- spark
- trino
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ["3.8", "3.9", "3.10", "3.11"]
exclude:
# TODO: would like to adopt `actionlint` pre-commit hook
# but false positive here and inability to do an inline ignore
Expand All @@ -362,7 +362,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache: "pip"
cache-dependency-path: |
reqs/requirements-dev-test.txt
setup.py
Expand All @@ -385,8 +385,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
cache: 'pip'
python-version: "3.8"
cache: "pip"
cache-dependency-path: reqs/requirements-dev-test.txt
- name: Install dependencies
run: pip install . -c ci/constraints-test/py38-min-install.txt -r reqs/requirements-dev-test.txt
Expand All @@ -403,8 +403,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip'
python-version: "3.9"
cache: "pip"
cache-dependency-path: reqs/requirements-dev-test.txt
- name: Install dependencies
run: pip install . -c ci/constraints-test/py39-min-install.txt -r reqs/requirements-dev-test.txt
Expand All @@ -421,8 +421,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
python-version: "3.10"
cache: "pip"
cache-dependency-path: reqs/requirements-dev-test.txt
- name: Install dependencies
run: pip install . -c ci/constraints-test/py310-min-install.txt -r reqs/requirements-dev-test.txt
Expand All @@ -439,8 +439,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
python-version: "3.11"
cache: "pip"
cache-dependency-path: reqs/requirements-dev-test.txt
- name: Install dependencies
run: pip install . -c ci/constraints-test/py311-min-install.txt -r reqs/requirements-dev-test.txt
Expand All @@ -457,8 +457,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
cache: 'pip'
python-version: "3.8"
cache: "pip"
cache-dependency-path: reqs/requirements-dev-test.txt
- name: Install dependencies
run: pip install . -c ci/constraints-test/pydantic-v1-install.txt -r reqs/requirements-dev-test.txt
Expand All @@ -474,8 +474,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
cache: 'pip'
python-version: "3.8"
cache: "pip"
cache-dependency-path: requirements.txt
- name: Install dependencies
run: pip install . -c ci/constraints-test/airflow-min-install.txt
Expand All @@ -489,7 +489,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ["3.8", "3.9", "3.10", "3.11"]
exclude:
- python-version: ${{ github.event_name == 'pull_request' && '3.9' }}
- python-version: ${{ github.event_name == 'pull_request' && '3.10' }}
Expand All @@ -500,7 +500,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache: "pip"
cache-dependency-path: requirements.txt
- name: Install Great Expectations with core deps only
run: pip install .
Expand Down Expand Up @@ -538,7 +538,7 @@ jobs:
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: '3.8'
python-version: "3.8"
- name: Update pip
run: python -m pip install --upgrade pip
- name: Install Twine and Wheel, and prepare packaging
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-title-checker.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Validate that PR titles are prefixed with one of our accepted labels
name: 'PR Title Checker'
name: "PR Title Checker"
on:
pull_request:
types:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-pep273-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ on:
types:
- opened
branches:
- 'main'
- "main"
schedule:
- cron: '0 0 * * *'
- cron: "0 0 * * *"

jobs:
run:
name: '[${{matrix.type}}, ${{matrix.os}}, py${{matrix.python}}]'
runs-on: '${{ matrix.os }}'
name: "[${{matrix.type}}, ${{matrix.os}}, py${{matrix.python}}]"
runs-on: "${{ matrix.os }}"
strategy:
matrix:
python: [3.7, 3.8, 3.9]
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ repos:
hooks:
- id: black-jupyter
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.2.2'
rev: "v0.2.2"
hooks:
- id: ruff
files: ^(great_expectations|assets|contrib|scripts|tasks\.py|tests) # TODO: add docs/ etc.
args: ['--fix']
args: ["--fix"]
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v4.0.0-alpha.8
hooks:
Expand All @@ -47,7 +47,7 @@ ci:
for more information, see https://pre-commit.ci
autofix_prs: true
autoupdate_branch: 'develop'
autoupdate_commit_msg: '[pre-commit.ci] pre-commit autoupdate'
autoupdate_branch: "develop"
autoupdate_commit_msg: "[pre-commit.ci] pre-commit autoupdate"
autoupdate_schedule: monthly
submodules: false
4 changes: 2 additions & 2 deletions assets/docker/clickhouse/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
version: '3.2'
version: "3.2"
services:
server:
image: yandex/clickhouse-server
ports:
- '9000:9000'
- "9000:9000"

ulimits:
nproc: 65535
Expand Down
2 changes: 1 addition & 1 deletion assets/docker/linkchecker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '3.2'
version: "3.2"
services:
linkchecker:
build: ./
Expand Down

0 comments on commit e33ee13

Please sign in to comment.