This is an automated email from the ASF dual-hosted git repository. humbedooh pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
commit 99d0309366d803f5eb3c33251b46768f5f885b59 Author: Daniel Gruno <[email protected]> AuthorDate: Wed Aug 12 14:27:42 2020 +0200 Start working on a travis test file --- .travis.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4e5b2ab --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: python +python: + - "3.8" + - "3.9-dev" + - "nightly" +before_install: + - git clone https://github.com/apache/incubator-ponymail-unit-tests.git tests + +install: + - pip install -r requirements.txt + +script: + - cd tests && python3 runall.py --rootdir ../ +
