From 624c428e392a1781f5cf7e51fff2e9029852af99 Mon Sep 17 00:00:00 2001
From: Bruce Flynn <brucef@ssec.wisc.edu>
Date: Thu, 17 Jun 2021 10:05:02 -0500
Subject: [PATCH] use docker_exec tag in CI

---
 .gitlab-ci.yml | 27 +++++++++++++++------------
 1 file changed, 15 insertions(+), 12 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 37797c9..46eb0ec 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -7,26 +7,29 @@ stages:
 
 test:
   stage: test
-  tags: ["docker"]
+  tags:
+    - docker_exec
   script:
     - pip install -e ".[testing]" -i https://iweb1.sips/eggs --trusted-host iweb1.sips
     - py.test -xv
 
 formatting:
-    stage: formatting
-    tags:
-        - docker
-    allow_failure: true
-    only:
-        - branches
-    except:
-        - master
-    script:
-        - pip install black
-        - black --diff --check edosl0util
+  stage: formatting
+  tags:
+    - docker_exec
+  allow_failure: true
+  only:
+      - branches
+  except:
+      - master
+  script:
+      - pip install black
+      - black --diff --check edosl0util
 
 sdist:
   stage: deploy
+  tags:
+    - docker_exec
   only:
     - /^\d+\.\d+\.\d+$/
   script:
-- 
GitLab