Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Nnupdate ci #239

Merged
merged 2 commits into from
Oct 18, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ steps:
displayName: 'Install dependencies'
- script: |
cd test/naive
source ~/.bashrc
source $HOME/.bashrc
python3 run.py
displayName: 'Run tests'
5 changes: 3 additions & 2 deletions test/naive/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,10 @@ def run(self, installed = True):

if __name__ == '__main__':
installed = (sys.argv[-1] != '--preinstall')
ic = Integration_test()
ci = Integration_test()
time.sleep(8)
try:
ic.run(installed)
ci.run(installed)
# TODO: check the output of rest server
print(GREEN + 'PASS' + CLEAR)
except Exception as error:
Expand Down