Skip to content

Commit 0dbf427

Browse files
authored
Move all test utils to src/ and hide them behind an "integration" feature (#84)
* Move all test utils to src/ and hide them behind an "integration" feature. This way, other crates and integration tests as well can use it * Extend SessionBuilder trait to operate on SessionState and SessionContext (#85) * Move all test utils to src/ and hide them behind an "integration" feature. This way, other crates and integration tests as well can use it * Extend the `SessionBuilder` trait to be able to operate not only at the `SessionStateBuilder` level, but also on `SessionState` and `SessionContext` * Add benchmarks crate by copying upstream DataFusion code (#73) * Add benchmarks crate by copying upstream DataFusion code * Wire-up distributed execution with tpch benchmarks (#86)
1 parent 84026d6 commit 0dbf427

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+2581
-179
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
with:
3232
lfs: true
3333
- uses: ./.github/actions/setup
34-
- run: cargo test
34+
- run: cargo test --features integration
3535

3636
format-check:
3737
runs-on: ubuntu-latest

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/.idea
2-
/target
2+
/target
3+
/benchmarks/data/

0 commit comments

Comments
 (0)