From 578ed64dc71bacc8d8b2c3eef41042a4bb322507 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0smail=20Ta=C5=9Fdelen?= Date: Sun, 21 Jun 2020 12:32:07 +0300 Subject: [PATCH] adding travis version control to metasploit db --- .travis.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..8455115 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: python +python: + - "3.4" + - "3.5" + - "3.6" +# command to install dependencies +install: + - pip install . +# command to run tests +script: + - pytest tests/*.py