This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import requests | |
import os | |
import sys | |
# Define API key and IDs | |
api_key = os.getenv("SPECTACLES_API_KEY") # <- Set this as a GitHub Actions environment variable | |
schema_name = f"dbt_ci_{os.getenv('GITHUB_SHA')[:6]}" # <- This is the name of the schema your CI jobs gets built in. | |
org_id = "" # <- Get this from the URL of the suite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import itertools | |
import pandas as pd | |
TEAMS = [ | |
"Toria", | |
"Dylan", | |
"Tom", | |
"Adam", | |
"Sammie", | |
"Will", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# coding: utf-8 | |
import requests | |
from datetime import datetime, timedelta | |
## Configs - enter CLIENT_ID and CLIENT_SECRET | |
BASE_URL = '' | |
CLIENT_ID = '' |