From fb58f671af248dc0aee2eedf57e64187aaea3ea1 Mon Sep 17 00:00:00 2001 From: Benedek Racz Date: Thu, 5 Sep 2019 16:30:45 +0200 Subject: [PATCH] [TEST] fix appveyor codecov command --- .travis.yml | 21 +++++++++------------ README.md | 3 --- appveyor.yml | 2 +- 3 files changed, 10 insertions(+), 16 deletions(-) diff --git a/.travis.yml b/.travis.yml index dc64b61..7ac133a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,18 +13,15 @@ matrix: - ls -la /c/Python37/Scripts - virtualenv $HOME/venv - source $HOME/venv/Scripts/activate - -# command to install dependencies -install: - - pip install .[test] - -# command to run tests -script: - - tox - -# Push the results back to codecov -after_success: -- codecov + # command to install dependencies + install: + - pip install .[test] + # command to run tests + script: + - tox + # Push the results back to codecov + after_success: + - codecov notifications: email: diff --git a/README.md b/README.md index 877a2e3..7a525ff 100644 --- a/README.md +++ b/README.md @@ -77,9 +77,6 @@ To run test, enter into the folder of the wexpect's repo then: `python -m unittest` -Note that `tests.test_constructor.TestCaseConstructor.test_constructor` test fails due to -[STDERR isn't handled properly #2](https://github.com/raczben/wexpect/issues/2). - ### Release The wexpect uses [pbr](https://docs.openstack.org/pbr/latest/) for managing releasing procedures. diff --git a/appveyor.yml b/appveyor.yml index 42d67d2..1ac029c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,4 +9,4 @@ test_script: - tox after_test: -- codecov \ No newline at end of file +- bash <(curl -s https://codecov.io/bash)