From e58e56446d8f9ded68da6f31253a126de47cdb75 Mon Sep 17 00:00:00 2001
From: Maciek Swiech <drmasquatch@fastmail.org>
Date: Mon, 1 Jun 2020 11:20:15 -0600
Subject: [PATCH] moving to python container

---
 .travis.yml      | 7 ++++++-
 requirements.txt | 1 +
 2 files changed, 7 insertions(+), 1 deletion(-)
 create mode 100644 requirements.txt

diff --git a/.travis.yml b/.travis.yml
index 1b2d8cd..bf35fb2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,5 +1,7 @@
 sudo: false
-language: bash
+language: python
+python:
+  - "3.6"
 dist: bionic
 addons:
   apt:
@@ -8,4 +10,7 @@ addons:
     packages:
       - bats
       - bc
+# command to install dependencies
+install:
+  - pip install -r requirements.txt
 script: ./test.sh
\ No newline at end of file
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..a87aaef
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1 @@
+psutil==5.7.0
\ No newline at end of file