Remove test job from Circle CI configuration.

There are no unit tests, so there is nothing that job can do.
This commit is contained in:
Sven Marnach 2021-04-30 15:27:34 +02:00
Родитель a1e47f4693
Коммит 09f38ed14e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: BD1A191F301D644E
1 изменённых файлов: 1 добавлений и 26 удалений

Просмотреть файл

@ -51,23 +51,6 @@ jobs:
paths:
- /cache/docker.tar
test:
docker:
- image: docker:18.02.0-ce
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
steps:
- setup_remote_docker
- restore_cache:
key: v1-{{.Environment.CIRCLE_SHA1}}
- run:
name: Restore Docker image cache
command: docker load -i /cache/docker.tar
- run:
name: Test Code
command: docker run app:build test
deploy:
docker:
- image: docker:18.02.0-ce
@ -100,24 +83,16 @@ jobs:
workflows:
version: 2
build-test-deploy:
build-deploy:
jobs:
- build:
filters:
tags:
only: /.*/
- test:
requires:
- build
filters:
tags:
only: /.*/
- deploy:
requires:
- build
- test
filters:
tags:
only: /.*/