Skip to content

Commit

Permalink
Don't continue on failure
Browse files Browse the repository at this point in the history
  • Loading branch information
anticorrelator committed Sep 20, 2024
1 parent 036a170 commit 165bec1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,17 +134,17 @@ jobs:
if: runner.os == 'Linux'
run: |
hatch run test:tests --run-postgres
continue-on-error: true
continue-on-error: false
- name: Run tests (macOS)
if: runner.os == 'macOS'
run: |
hatch run test:tests
continue-on-error: true
continue-on-error: false
- name: Run tests (Windows)
if: runner.os == 'Windows'
run: |
hatch run test:tests
continue-on-error: true
continue-on-error: false
integration-test:
runs-on: ${{ matrix.os }}
needs: changes
Expand Down
4 changes: 2 additions & 2 deletions tests/server/api/routers/v1/test_spans.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ async def test_span_round_tripping_with_docs(
dialect: str,
span_data_with_documents: Any,
) -> None:
if dialect == "sqlite":
pytest.xfail("TODO: Convert this to an integration test")
# if dialect == "sqlite":
# pytest.xfail("TODO: Convert this to an integration test")

df = cast(pd.DataFrame, px_client.get_spans_dataframe())
new_ids = {span_id: getrandbits(64).to_bytes(8, "big").hex() for span_id in df.index}
Expand Down

0 comments on commit 165bec1

Please sign in to comment.