File tree 2 files changed +13
-2
lines changed 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -140,8 +140,6 @@ Travis CI Settings
140
140
~~~~~~~~~~~~~~~~~~
141
141
142
142
All 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.
145
143
146
144
Learnings about VWS
147
145
-------------------
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
[email protected] :
" ${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