fix drone pipeline dependencies

This commit is contained in:
Robert Kaussow 2020-06-03 13:21:17 +02:00
parent c6c3ab1d94
commit ac13395bb7
2 changed files with 10 additions and 10 deletions

View File

@ -1,4 +1,4 @@
local PythonVersion(pyversion='2.7') = {
local PythonVersion(pyversion='3.5') = {
name: 'python' + std.strReplace(pyversion, '.', '') + '-pytest',
image: 'python:' + pyversion,
environment: {
@ -66,10 +66,10 @@ local PipelineTest = {
'codecov --required -X gcov',
],
depends_on: [
'python35-ansible',
'python36-ansible',
'python37-ansible',
'python38-ansible',
'python35-pytest',
'python36-pytest',
'python37-pytest',
'python38-pytest',
],
},
],

View File

@ -93,10 +93,10 @@ steps:
from_secret: codecov_token
PY_COLORS: 1
depends_on:
- python35-ansible
- python36-ansible
- python37-ansible
- python38-ansible
- python35-pytest
- python36-pytest
- python37-pytest
- python38-pytest
trigger:
ref:
@ -495,6 +495,6 @@ depends_on:
---
kind: signature
hmac: 1aa29dfec526c097fdefe018bd59133a5fe2d0579cb4cb94f888daca8243e6ca
hmac: ed05de9ea3b8a80f154ee51a3d57497ba194c0310a2a0c7469a7e77d86de51ce
...