From 8117d98e083003a229a7a752e9e6a9489fbf2218 Mon Sep 17 00:00:00 2001 From: Alliumcepa Date: Thu, 9 Nov 2017 02:52:20 -0500 Subject: [PATCH] add travis-ci --- .travis.yml | 23 +++++++++++++++++++++++ requirements.txt | 1 + 2 files changed, 24 insertions(+) create mode 100644 .travis.yml create mode 100644 requirements.txt diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..43c1a47 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,23 @@ +os: + - linux + - windows + - osx + +language: python +python: + - 2.7 + - 3.3 + - 3.4 + - 3.5 + - 3.6 + +install: + - python setup.py install + +script: + - xeH --help + - xeH $TEST_URL_E --dir test1 + - LANG=zh_CN.utf-8 LC_ALL=zh_CN.utf-8 xeH $TEST_URL_E --dir test1 + - LANG=zh_TW.utf-8 LC_ALL=zh_TW.utf-8 xeH $TEST_URL_E --dir test1 + - xeH $TEST_URL_E --dir test1 --archive true + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..c16af99 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +requests[socks]