Skip to content

Commit 038d8da

Browse files
authored
ci: Staging nightlies (#225)
1 parent 7af22e8 commit 038d8da

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/workflows/nightly.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,16 @@ jobs:
4646
id: setup
4747
uses: firebolt-db/integration-testing-setup@master
4848
with:
49-
firebolt-username: ${{ secrets.FIREBOLT_USERNAME }}
50-
firebolt-password: ${{ secrets.FIREBOLT_PASSWORD }}
51-
api-endpoint: "api.dev.firebolt.io"
49+
firebolt-username: ${{ secrets.FIREBOLT_STG_USERNAME }}
50+
firebolt-password: ${{ secrets.FIREBOLT_STG_PASSWORD }}
51+
api-endpoint: "api.staging.firebolt.io"
5252
region: "us-east-1"
5353
db_suffix: ${{ format('{0}_{1}', matrix.os, matrix.python-version) }}
5454

5555
- name: Run integration tests
5656
env:
57-
USER_NAME: ${{ secrets.FIREBOLT_USERNAME }}
58-
PASSWORD: ${{ secrets.FIREBOLT_PASSWORD }}
57+
USER_NAME: ${{ secrets.FIREBOLT_STG_USERNAME }}
58+
PASSWORD: ${{ secrets.FIREBOLT_STG_PASSWORD }}
5959
SERVICE_ID: ${{ secrets.SERVICE_ID_STG }}
6060
SERVICE_SECRET: ${{ secrets.SERVICE_SECRET_STG }}
6161
DATABASE_NAME: ${{ steps.setup.outputs.database_name }}
@@ -64,7 +64,7 @@ jobs:
6464
STOPPED_ENGINE_NAME: ${{ steps.setup.outputs.stopped_engine_name }}
6565
STOPPED_ENGINE_URL: ${{ steps.setup.outputs.stopped_engine_url }}
6666
ACCOUNT_NAME: "firebolt"
67-
API_ENDPOINT: "api.dev.firebolt.io"
67+
API_ENDPOINT: "api.staging.firebolt.io"
6868
run: |
6969
pytest --timeout_method "thread" -o log_cli=true -o log_cli_level=INFO tests/integration
7070

tests/integration/dbapi/async/test_queries_async.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ async def test_select(
156156
)
157157

158158

159+
@mark.skip("Don't have a good way to test this anymore. FIR-16038")
159160
@mark.timeout(timeout=400)
160161
async def test_long_query(
161162
connection: Connection,

tests/integration/dbapi/sync/test_queries.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ def test_select(
113113
)
114114

115115

116+
@mark.skip("Don't have a good way to test this anymore. FIR-16038")
116117
@mark.timeout(timeout=400)
117118
def test_long_query(
118119
connection: Connection,

0 commit comments

Comments
 (0)