From 04c8e75dbce723e6ba1d30bb4385e230492ddd7b Mon Sep 17 00:00:00 2001 From: Yong Huang Date: Wed, 30 May 2018 15:44:27 +0800 Subject: [PATCH] Remove circle from CI list --- .travis.yml | 5 +++-- circle.yml | 15 --------------- 2 files changed, 3 insertions(+), 17 deletions(-) delete mode 100644 circle.yml diff --git a/.travis.yml b/.travis.yml index be39e59e..3e2cf0b8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,8 +11,8 @@ install: script: - flake8 storops storops_test storops_comptest - "py.test -n2 --cov=storops --cov-config coverage.ini --cov-report=xml --cov-report term --junit-xml=junit-result.xml storops_test" -#after_success: -# - coveralls +after_success: + - coveralls notifications: email: - cedric.zhuang@emc.com @@ -20,3 +20,4 @@ notifications: - peter.wang13@emc.com - tina.tang@emc.com - ryan.liang@emc.com + - yong.huang@emc.com diff --git a/circle.yml b/circle.yml deleted file mode 100644 index 31a2639b..00000000 --- a/circle.yml +++ /dev/null @@ -1,15 +0,0 @@ -machine: - post: - - pyenv global 2.7.12 3.4.4 3.5.3 3.6.2 - -test: - override: - - tox - post: - - bash <(curl -s https://codecov.io/bash) -cF python - -general: - artifacts: - - ".coverage" # relative to the build directory - - "coverage.xml" # relative to the user's home directory - - "htmlcov" # a single file, relative to the build directory