From 37a43c86570318194cf98a7c2e8ae6949efad655 Mon Sep 17 00:00:00 2001
From: Oliver Walters <oliver.henry.walters@gmail.com>
Date: Tue, 1 Sep 2020 21:13:38 +1000
Subject: [PATCH] Install required PIP packages

---
 .travis.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.travis.yml b/.travis.yml
index 3646c7bf6a..e780ac16f4 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -17,6 +17,8 @@ before_install:
     - sudo apt-get update
     - sudo apt-get install gettext
     - pip3 install invoke
+    - pip3 install mysqlclient
+    - pip3 install psycopg2
     - invoke install
     - invoke migrate
     - cd InvenTree && python3 manage.py createsuperuser --username InvenTreeAdmin --email admin@inventree.com --noinput && cd ..