We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 730cfe7 commit 13f73f6Copy full SHA for 13f73f6
2 files changed
requirements.txt
@@ -1,2 +1,3 @@
1
# Python dependencies installed in Dockerfile
2
-onecodex==0.1.2
+onecodex==0.1.2
3
+awscli==1.8.3
test/ocx.bats
@@ -10,6 +10,11 @@
10
[[ $F == *2.5.2* ]]
11
}
12
13
+@test "AWS CLI 1.8.3" {
14
+ X=$(aws --version 2>&1)
15
+ [[ $X == *aws-cli/1.8.3* ]]
16
+}
17
+
18
@test "One Codex CLI v0.1.2" {
19
X=$(onecodex --version 2>&1)
20
[[ $X == *0.1.2\ \(API\ v0\)* ]]
0 commit comments