Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/k3d-nightly-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -138,3 +138,7 @@ jobs:
- name: Print Emails Logs
if: ${{ always() }}
run: kubectl logs svc/browsertrix-cloud-emails -c api

- name: Print K8S Events
if: ${{ always() }}
run: kubectl events --all-namespaces
3 changes: 1 addition & 2 deletions backend/test/test_crawlconfigs.py
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ def test_get_crawler_channels(crawler_auth_headers, default_org_id):
assert r.status_code == 200
crawler_channels = r.json()["channels"]
assert crawler_channels
assert len(crawler_channels) == 2
assert len(crawler_channels) == 3
for crawler_channel in crawler_channels:
assert crawler_channel["id"]
assert crawler_channel["image"]
Expand Down Expand Up @@ -1081,7 +1081,6 @@ def test_shareable_workflow(admin_auth_headers, default_org_id, admin_crawl_id):


def test_update_profile(crawler_auth_headers, default_org_id, profile_id, profile_2_id):

def get_profile():
r = requests.get(
f"{API_PREFIX}/orgs/{default_org_id}/crawlconfigs/{cid}/",
Expand Down
Loading
Loading