Test never go out of pending
Summary
Yesterday we ran out of CI/CD time. We bought 1000 more minutes for our CI/CD. Every since that point all of our test go into "pending" and just stay there. Some of them for almost 18 hours now. The problem is relevant in the whole group.
URL: https://gitlab.com/Company42/ Group ID: 2674113
Steps to reproduce
Run tests so much you run out of minutes. Buy 1000 more minutes. Make so merge requests and see if the tests are in pending.
Example Project
The code should be irrelevant. We have different .yaml files and they all won't run. We have never experienced anything like this. Here is an example yaml file:
image: node:8-alpine
stages:
- test
- deploy
cache:
key: "$CI_COMMIT_REF_SLUG"
paths:
- node_modules/
test:
stage: test
script:
- npm install
- npm run test:unit
only:
- tags
- merge_requests
- master
- develop
staging-new:
image: ruby
stage: deploy
script:
- apt-get update -qy
- apt-get install -y ruby-dev
- gem install dpl
- dpl --provider=heroku --app=team42appdevnew --api-key=$HEROKU_API_KEY
only:
- develop-new
staging:
image: ruby
stage: deploy
script:
- apt-get update -qy
- apt-get install -y ruby-dev
- gem install dpl
- dpl --provider=heroku --app=team42appdev --api-key=$HEROKU_API_KEY
only:
- develop
production:
image: ruby
stage: deploy
script:
- apt-get update -qy
- apt-get install -y ruby-dev
- gem install dpl
- dpl --provider=heroku --app=team42app --api-key=$HEROKU_API_KEY
only:
- master
What is the current bug behavior?
Tests do not go out of pending.
What is the expected correct behavior?
Tests start running.
Relevant logs and/or screenshots
N/A
Output of checks
This bug happens on GitLab.com
Results of GitLab environment info
N/A
Results of GitLab application Check
N/A
Possible fixes
No clue.