UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 97c1f8ba authored by joshwolf's avatar joshwolf
Browse files

Merge branch '79-cypress-upgrade-fix' into 'master'

Resolve Cypress testing not surviving second round of tests after upgrade

Summary

Adding line to clear out pull down new cypress test information for each package after the initial install then upgrade of bigbang within the upgrade CI job.

We want new tesing information to be pulled down in the event of any new tags having new testing information, each time testing is ran it will be corresponding to the exact tags that are installed via bigbang.

See merge request platform-one/big-bang/bigbang!353
parents 8bb1fd75 bbdab207
No related branches found
No related tags found
1 merge request!353Resolve Cypress testing not surviving second round of tests after upgrade
Pipeline #199128 failed
......@@ -3,6 +3,9 @@
# exit on error
set -e
#Clear out folder if present
rm -rf cypress-tests/
#Create folder for cypress tests
mkdir -p cypress-tests/
#Cloning core
......@@ -40,4 +43,4 @@ do
echo "Running cypress tests in ${dir}"
cypress run --project "${dir}"tests
fi
done
\ No newline at end of file
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment