From 532a628b3880371010f62835b53486165af371ee Mon Sep 17 00:00:00 2001 From: John Taylor Date: Thu, 1 Mar 2018 13:54:20 -0800 Subject: [PATCH 1/3] added .travis.yml file --- .travis.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..7f0b78446 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +language: python + +python: + - "3.6" + +install: + - pip install -e .\libraries\botbuilder-schema + - pip install -e .\libraries\botframework-connector + - pip install -e .\libraries\botbuilder-core + - pip install -r .\libraries\botframework-connector\tests\requirements.txt + +script: pytest From 7b9749e090188abdc3e7e25ace9d44a1fd96e5f8 Mon Sep 17 00:00:00 2001 From: John Taylor Date: Thu, 1 Mar 2018 14:05:59 -0800 Subject: [PATCH 2/3] added .travis.yml file unix slashes --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7f0b78446..fa1daf03c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,9 +4,9 @@ python: - "3.6" install: - - pip install -e .\libraries\botbuilder-schema - - pip install -e .\libraries\botframework-connector - - pip install -e .\libraries\botbuilder-core - - pip install -r .\libraries\botframework-connector\tests\requirements.txt + - pip install -e ./libraries/botbuilder-schema + - pip install -e ./libraries/botframework-connector + - pip install -e ./libraries/botbuilder-core + - pip install -r ./libraries/botframework-connector/tests/requirements.txt script: pytest From ddba4cb670f6cabc5efa9a74b6c872816bfbff64 Mon Sep 17 00:00:00 2001 From: John Taylor Date: Thu, 1 Mar 2018 14:16:10 -0800 Subject: [PATCH 3/3] add Travis build badge to README --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index c601222c2..0f2adb327 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # Bot Builder SDK v4 + +[![Build Status](https://travis-ci.org/Microsoft/botbuilder-python.svg?branch=master)](https://travis-ci.org/Microsoft/botbuilder-python) + This repository contains code for the Python version of the [Microsoft Bot Builder SDK](https://github.com/Microsoft/BotBuilder). The 4.x version of the SDK is being actively developed and should therefore be used for **EXPERIMENTATION PURPOSES ONLY**. In addition to the Python SDK, Bot Builder supports creating bots in other popular programming languages like [.Net SDK](https://github.com/Microsoft/botbuilder-dotnet), [JavaScript](https://github.com/Microsoft/botbuilder-js), and [Java](https://github.com/Microsoft/botbuilder-java).