Skip to content

Commit

Permalink
Merge branch 'master' into tom/new-pipelie
Browse files Browse the repository at this point in the history
  • Loading branch information
Gilbert09 committed Dec 4, 2024
2 parents 8e6ab69 + 5e9ae64 commit 8e37d4a
Show file tree
Hide file tree
Showing 349 changed files with 21,943 additions and 4,600 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/surveys.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ describe('Surveys', () => {
cy.get('[data-attr=prop-val]').click({ force: true })
cy.get('[data-attr=prop-val-0]').click({ force: true })

cy.get('[data-attr="rollout-percentage"]').type('100')
cy.get('[data-attr="rollout-percentage"]').click().type('100')

// save
cy.get('[data-attr="save-survey"]').eq(0).click()
Expand Down Expand Up @@ -202,7 +202,7 @@ describe('Surveys', () => {
cy.get('[data-attr="prop-filter-person_properties-0"]').click()
cy.get('[data-attr=prop-val]').click({ force: true })
cy.get('[data-attr=prop-val-0]').click({ force: true })
cy.get('[data-attr="rollout-percentage"]').type('100')
cy.get('[data-attr="rollout-percentage"]').click().type('100')

cy.get('[data-attr=save-survey]').first().click()

Expand Down
4 changes: 2 additions & 2 deletions cypress/wait.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ def main():
print("PostHog is alive! Proceeding")
continue
else:
# recieved not 200 from PostHog, but service is up
print("Found status %d" % (r.status,))
# received not 200 from PostHog, but service is up
print(f"Found status {r.status:d}")
with open("cypress/screenshots/curl.html", "wb") as f:
f.write(r.read) # type: ignore
print("PostHog is still booting. Sleeping for 1 second")
Expand Down
Loading

0 comments on commit 8e37d4a

Please sign in to comment.