Skip to content

Commit

Permalink
Restore defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
pvk-developer committed Oct 3, 2024
1 parent df0f5a0 commit 40a66fa
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/dtypes_benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Data Types Benchmark

on:
push:
branches:
- main

jobs:
run_dtypes_benchmark:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: [ '3.8', '3.12']
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, windows-latest]
include:
- os: macos-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/minimum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: [ '3.8', '3.12']
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, windows-latest]
include:
- os: macos-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: [ '3.8', '3.12']
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, windows-latest]
include:
- os: macos-latest
Expand Down
4 changes: 2 additions & 2 deletions tests/benchmark/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from tests._external.gdrive_utils import get_latest_file, read_excel, save_to_gdrive
from tests._external.slack_utils import post_slack_message

GDRIVE_OUTPUT_FOLDER = '1tjre6vNnbAv6jyfsF8N8EZfDX7Rx2HCT'
GDRIVE_OUTPUT_FOLDER = '16SkTOyQ3xkJDPJbyZCusb168JwreW5bm'
PYTHON_VERSION = f'{sys.version_info.major}.{sys.version_info.minor}'
TEMPRESULTS = Path(f'results/{sys.version_info.major}.{sys.version_info.minor}.json')

Expand Down Expand Up @@ -225,7 +225,7 @@ def compare_and_store_results_in_gdrive():
f'See <https://docs.google.com/spreadsheets/d/{file_id}|dtypes summary and details>'
)
slack_message = '\n'.join(slack_messages)
post_slack_message('sdv-alerts-debug', slack_message)
post_slack_message('sdv-alerts', slack_message)
sys.exit(exit_code)


Expand Down

0 comments on commit 40a66fa

Please sign in to comment.