diff --git a/azure-pipelines.yml b/azure-pipelines.yml index bc514b2d90..357c785f37 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -16,6 +16,6 @@ steps: displayName: 'Install dependencies' - script: | cd test/naive - source ~/.bashrc + source $HOME/.bashrc python3 run.py displayName: 'Run tests' diff --git a/test/naive/run.py b/test/naive/run.py index 4f334d0560..f9548ca9ad 100644 --- a/test/naive/run.py +++ b/test/naive/run.py @@ -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: