diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-08-10 10:45:11 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-08-10 12:08:02 +0200 |
commit | 4be2e13c066fe5952b3a6339d27cd603e0fbaa18 (patch) | |
tree | 56079c67fc54df7dbfe0eba8e350802314137eb5 | |
parent | 6fcd58709c2aeb123dad6f86a103ae5f3af282e1 (diff) |
Run Xtesting unit tests via CircleCI
It runs tox and published the artifacts.
It's worth mentioning that all docker images are already built via
Travis CI (amd64, arm and arm64) [1].
https://travis-ci.org/collivier/functest-xtesting
Change-Id: Icc57b6c45062425181230f3ebbdc5d3f7a925f99
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r-- | .circleci/config.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 00000000..39d2db39 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,23 @@ +--- +version: 2 +jobs: + build: + docker: + - image: circleci/python:3.7.4 + steps: + - checkout + - run: + name: Install dependendencies + command: sudo apt-get install python-dev python3.7-dev + - run: + name: Run tox + command: sudo pip install tox && tox + - store_artifacts: + path: api/build + destination: api + - store_artifacts: + path: cover + destination: cover + - store_artifacts: + path: coverage.xml + destination: coverage.xml |