-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andrew Suderman
committed
Apr 8, 2021
1 parent
aac939f
commit 61653fa
Showing
4 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
docker cp . e2e-command-runner:/reckoner |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
|
||
set -x | ||
set -e | ||
|
||
python --version | ||
|
||
apt-get update | ||
apt-get install python3-pip | ||
|
||
cd /reckoner | ||
pip3 install . | ||
reckoner --version | ||
|
||
curl -LO https://github.com/ovh/venom/releases/download/v0.27.0/venom.linux-amd64 | ||
mv venom.linux-amd64 /usr/local/bin/venom | ||
chmod +x /usr/local/bin/venom | ||
|
||
mkdir -p /tmp/test-results | ||
|
||
cd /reckoner/end_to_end_testing | ||
|
||
# The parallelization number must remain relatively low otherwise the tests become flaky due to resources and pending pods and such | ||
venom run tests/* --log debug --output-dir=/tmp/test-results --parallel=2 --strict | ||
exit $? |