Skip to content

Commit

Permalink
test: add basic E2E/smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffijoe committed Nov 20, 2023
1 parent 88287a9 commit 7429d5d
Show file tree
Hide file tree
Showing 5 changed files with 2,066 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,16 @@ jobs:
# Don't run on Windows because Unix sockets are not available.
if: ${{ matrix.os != 'windows-latest' }}
run: cargo test

- name: E2E
shell: bash
run: |
# Start a Deltio instance in the background
./target/release/deltio --bind 0.0.0.0:8085 --log trace &
# Run the E2E smoke test
cd e2e
cargo run
concurrency:
cancel-in-progress: true
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/target
.DS_Store
/.idea
/e2e/target
Loading

0 comments on commit 7429d5d

Please sign in to comment.