File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -140,8 +140,6 @@ Travis CI Settings
140140~~~~~~~~~~~~~~~~~~
141141
142142All targets are deleted from the database between each test.
143- Therefore there may be conflicts if the test suite is run concurrently as Travis CI is configured to connect to one Vuforia database.
144- As such, Travis CI is configured not to run multiple instances of the test suite concurrently.
145143
146144Learnings about VWS
147145-------------------
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ set -ex
4+
5+ # Perform a release.
6+ # See the release process documentation for details.
7+ cd " $( mktemp -d) "
8+ git clone git@github.com:" ${GITHUB_OWNER} " /vws-python-mock.git
9+ cd vws-python-mock
10+ virtualenv -p python3 release
11+ source release/bin/activate
12+ pip install --editable .[dev]
13+ python admin/release.py
You can’t perform that action at this time.
0 commit comments