From 8205d88938efcb19b392ac1b486de64435a0f2a2 Mon Sep 17 00:00:00 2001 From: bogdandm Date: Thu, 20 Sep 2018 18:00:45 +0300 Subject: [PATCH 1/4] Travis CI --- .travis.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..cbae9b7 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: python +python: +- "3.7" +- "3.7-dev" +- "3.8-dev" +install: +- pip install -r requirements.txt +- pip install pytest pytest-coverage +script: +- pytest -vv -m "not slow_http" \ No newline at end of file From d520f309406301e0a81909f201a287860d33ab0e Mon Sep 17 00:00:00 2001 From: bogdandm Date: Thu, 20 Sep 2018 18:08:05 +0300 Subject: [PATCH 2/4] Travis CI --- .travis.yml | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index cbae9b7..43902bc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,20 @@ +sudo: required +dist: xenial language: python +cache: pip python: -- "3.7" -- "3.7-dev" -- "3.8-dev" + - "3.7" + - "3.7-dev" + - "3.8-dev" install: -- pip install -r requirements.txt -- pip install pytest pytest-coverage + - pip install -r requirements.txt + - pip install pytest pytest-coverage script: -- pytest -vv -m "not slow_http" \ No newline at end of file + - pytest --cov-config .coveragerc --cov=rest_client_gen -m "not no_expected" test/ +after_success: + - coveralls +matrix: + include: + - python: 3.6 + - python: 3.7 + - python: 3.8-dev \ No newline at end of file From ff60c49a161104340aed861be7dce9c2973960ea Mon Sep 17 00:00:00 2001 From: bogdandm Date: Thu, 20 Sep 2018 18:10:44 +0300 Subject: [PATCH 3/4] Travis CI --- .travis.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 43902bc..9a60d35 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,10 +2,6 @@ sudo: required dist: xenial language: python cache: pip -python: - - "3.7" - - "3.7-dev" - - "3.8-dev" install: - pip install -r requirements.txt - pip install pytest pytest-coverage @@ -15,6 +11,6 @@ after_success: - coveralls matrix: include: - - python: 3.6 - python: 3.7 + - python: 3.7-dev - python: 3.8-dev \ No newline at end of file From 2f37f08f90228d18e5d547e86d5b5285e5c0ff99 Mon Sep 17 00:00:00 2001 From: bogdandm Date: Thu, 20 Sep 2018 18:14:10 +0300 Subject: [PATCH 4/4] Travis CI --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9a60d35..a4d20c4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ language: python cache: pip install: - pip install -r requirements.txt - - pip install pytest pytest-coverage + - pip install pytest pytest-coverage requests script: - pytest --cov-config .coveragerc --cov=rest_client_gen -m "not no_expected" test/ after_success: