From 4382b664967fae30eb1c713312fc6c260a198fb9 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Wed, 14 Apr 2021 20:39:32 +0300
Subject: [PATCH] Install with the all specifier in tests.

After 615a59a5711ca194f6ac7cecb8627f0fe8b79177, you need to use
specifiers to install all of the dependencies. Use the all specifier in
tests.
---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e511168..a3e5c6d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -24,7 +24,7 @@ test:
       wget
     # yamllint disable-line rule:line-length
     - wget https://github.com/cloudbees-oss/juxr/releases/download/0.1.22/juxr-x86_64-unknown-linux-gnu.tar.gz -O - | tar -xzC /usr/local/bin
-    - pip install dist/*.whl
+    - find dist/*.whl -exec pip install {}[all] \;
     - pip install pytest six
   script:
     - juxr tap --name bats --output results/ -- bats tests/
-- 
GitLab