Olivier Massot 4 anos atrás
pai
commit
9431b4bdfc
1 arquivos alterados com 4 adições e 8 exclusões
  1. 4 8
      .gitlab-ci.yml

+ 4 - 8
.gitlab-ci.yml

@@ -29,31 +29,27 @@ install:
 chrome:
   image: cypress/browsers:node14.17.0-chrome88-ff89
   stage: test
-  parallel: 4
   script:
     - yarn ci & npx wait-on http://localhost:3004
-    - yarn cypress:run --record --parallel --browser chrome --group "Chrome"
+    - yarn cypress:run --record --browser chrome --tag "Chrome"
 
 chrome-mobile:
   image: cypress/browsers:node14.17.0-chrome88-ff89
   stage: test
-  parallel: 4
   script:
     - yarn ci & npx wait-on http://localhost:3004
-    - yarn cypress:run --record --parallel --browser chrome --group "Chrome - Mobile" --config "viewportWidth=375,viewportHeight=667"
+    - yarn cypress:run --record --browser chrome --tag "Chrome - Mobile" --config "viewportWidth=375,viewportHeight=667"
 
 firefox:
   image: cypress/browsers:node14.17.0-chrome88-ff89
   stage: test
-  parallel: 4
   script:
     - yarn ci & npx wait-on http://localhost:3004
-    - yarn cypress:run --record --parallel --browser firefox --group "Firefox"
+    - yarn cypress:run --record --browser firefox --tag "Firefox"
 
 firefox-mobile:
   image: cypress/browsers:node14.17.0-chrome88-ff89
   stage: test
-  parallel: 4
   script:
     - yarn ci & npx wait-on http://localhost:3004
-    - yarn cypress:run --record --parallel --browser firefox --group "Firefox - Mobile" --config "viewportWidth=375,viewportHeight=667"
+    - yarn cypress:run --record --browser firefox --tag "Firefox - Mobile" --config "viewportWidth=375,viewportHeight=667"