Skip to content

Commit

Permalink
add test that bin duckdb exist (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
odysseu authored Mar 5, 2024
1 parent 7d9bbcf commit eaaa9e6
Show file tree
Hide file tree
Showing 12 changed files with 50 additions and 2 deletions.
6 changes: 5 additions & 1 deletion base/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,8 @@ commandTests:
- name: "Does the binary exists?"
command: "which"
args: ["argo"]
expectedOutput: ["/usr/local/bin/argo"]
expectedOutput: ["/usr/local/bin/argo"]
- name: "Does the binary exists?"
command: "which"
args: ["duckdb"]
expectedOutput: ["/usr/local/bin/duckdb"]
4 changes: 4 additions & 0 deletions jupyter/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,7 @@ commandTests:
command: "which"
args: ["jupyter-lab"]
expectedOutput: ["/usr/local/bin/jupyter-lab|/opt/mamba/bin/jupyter-lab"]
- name: "Does the binary exists?"
command: "which"
args: ["duckdb"]
expectedOutput: ["/usr/local/bin/duckdb"]
4 changes: 4 additions & 0 deletions python-datascience/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,7 @@ commandTests:
command: "which"
args: ["quarto"]
expectedOutput: ["/usr/local/bin/quarto"]
- name: "Does the binary exists?"
command: "which"
args: ["duckdb"]
expectedOutput: ["/usr/local/bin/duckdb"]
4 changes: 4 additions & 0 deletions python-minimal/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,7 @@ commandTests:
command: "which"
args: ["pip"]
expectedOutput: ["/opt/mamba/bin/pip"]
- name: "Does the binary exists?"
command: "which"
args: ["duckdb"]
expectedOutput: ["/usr/local/bin/duckdb"]
4 changes: 4 additions & 0 deletions python-pytorch/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,7 @@ commandTests:
command: "which"
args: ["pip"]
expectedOutput: ["/opt/mamba/bin/pip"]
- name: "Does the binary exists?"
command: "which"
args: ["duckdb"]
expectedOutput: ["/usr/local/bin/duckdb"]
4 changes: 4 additions & 0 deletions python-tensorflow/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,7 @@ commandTests:
command: "which"
args: ["pip"]
expectedOutput: ["/opt/mamba/bin/pip"]
- name: "Does the binary exists?"
command: "which"
args: ["duckdb"]
expectedOutput: ["/usr/local/bin/duckdb"]
4 changes: 4 additions & 0 deletions r-datascience/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,7 @@ commandTests:
command: "which"
args: ["java"]
expectedOutput: ["/usr/lib/jvm/java-17-openjdk-amd64/bin/java"]
- name: "Does the binary exists?"
command: "which"
args: ["duckdb"]
expectedOutput: ["/usr/local/bin/duckdb"]
4 changes: 4 additions & 0 deletions r-minimal/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,7 @@ commandTests:
command: "which"
args: ["R"]
expectedOutput: ["/usr/local/bin/R"]
- name: "Does the binary exists?"
command: "which"
args: ["duckdb"]
expectedOutput: ["/usr/local/bin/duckdb"]
4 changes: 4 additions & 0 deletions r-python-julia/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,7 @@ commandTests:
command: "which"
args: ["julia"]
expectedOutput: ["/opt/julia/bin/julia"]
- name: "Does the binary exists?"
command: "which"
args: ["duckdb"]
expectedOutput: ["/usr/local/bin/duckdb"]
4 changes: 4 additions & 0 deletions rstudio/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,7 @@ commandTests:
command: "which"
args: ["rstudio-server"]
expectedOutput: ["/usr/lib/rstudio-server/bin/rstudio-server"]
- name: "Does the binary exists?"
command: "which"
args: ["duckdb"]
expectedOutput: ["/usr/local/bin/duckdb"]
6 changes: 5 additions & 1 deletion spark/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,8 @@ commandTests:
- name: "Does the binary exists?"
command: "which"
args: ["java"]
expectedOutput: ["/usr/lib/jvm/java-17-openjdk-amd64/bin/java"]
expectedOutput: ["/usr/lib/jvm/java-17-openjdk-amd64/bin/java"]
- name: "Does the binary exists?"
command: "which"
args: ["duckdb"]
expectedOutput: ["/usr/local/bin/duckdb"]
4 changes: 4 additions & 0 deletions vscode/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,7 @@ commandTests:
command: "which"
args: ["code-server"]
expectedOutput: ["/usr/bin/code-server"]
- name: "Does the binary exists?"
command: "which"
args: ["duckdb"]
expectedOutput: ["/usr/local/bin/duckdb"]

0 comments on commit eaaa9e6

Please sign in to comment.