mirror of
https://github.com/thegeeklab/corenetworks.git
synced 2024-11-21 11:10:39 +00:00
ci: disable poetry experimental installer (#23)
This commit is contained in:
parent
69019db7f7
commit
6ebc19b568
@ -6,6 +6,7 @@ local PythonVersion(pyversion='3.6') = {
|
|||||||
},
|
},
|
||||||
commands: [
|
commands: [
|
||||||
'pip install poetry poetry-dynamic-versioning -qq',
|
'pip install poetry poetry-dynamic-versioning -qq',
|
||||||
|
'poetry config experimental.new-installer false',
|
||||||
'poetry install',
|
'poetry install',
|
||||||
'poetry run pytest',
|
'poetry run pytest',
|
||||||
'poetry version',
|
'poetry version',
|
||||||
@ -32,6 +33,7 @@ local PipelineLint = {
|
|||||||
commands: [
|
commands: [
|
||||||
'git fetch -tq',
|
'git fetch -tq',
|
||||||
'pip install poetry poetry-dynamic-versioning -qq',
|
'pip install poetry poetry-dynamic-versioning -qq',
|
||||||
|
'poetry config experimental.new-installer false',
|
||||||
'poetry install',
|
'poetry install',
|
||||||
'poetry run yapf -dr ./corenetworks',
|
'poetry run yapf -dr ./corenetworks',
|
||||||
],
|
],
|
||||||
@ -45,6 +47,7 @@ local PipelineLint = {
|
|||||||
commands: [
|
commands: [
|
||||||
'git fetch -tq',
|
'git fetch -tq',
|
||||||
'pip install poetry poetry-dynamic-versioning -qq',
|
'pip install poetry poetry-dynamic-versioning -qq',
|
||||||
|
'poetry config experimental.new-installer false',
|
||||||
'poetry install',
|
'poetry install',
|
||||||
'poetry run flake8 ./corenetworks',
|
'poetry run flake8 ./corenetworks',
|
||||||
],
|
],
|
||||||
@ -118,6 +121,7 @@ local PipelineSecurity = {
|
|||||||
commands: [
|
commands: [
|
||||||
'git fetch -tq',
|
'git fetch -tq',
|
||||||
'pip install poetry poetry-dynamic-versioning -qq',
|
'pip install poetry poetry-dynamic-versioning -qq',
|
||||||
|
'poetry config experimental.new-installer false',
|
||||||
'poetry install',
|
'poetry install',
|
||||||
'poetry run bandit -r ./corenetworks -x ./corenetworks/test',
|
'poetry run bandit -r ./corenetworks -x ./corenetworks/test',
|
||||||
],
|
],
|
||||||
@ -214,6 +218,7 @@ local PipelineDocs = {
|
|||||||
commands: [
|
commands: [
|
||||||
'git fetch -tq',
|
'git fetch -tq',
|
||||||
'pip install poetry poetry-dynamic-versioning -qq',
|
'pip install poetry poetry-dynamic-versioning -qq',
|
||||||
|
'poetry config experimental.new-installer false',
|
||||||
'poetry install',
|
'poetry install',
|
||||||
'make doc',
|
'make doc',
|
||||||
],
|
],
|
||||||
|
10
.drone.yml
10
.drone.yml
@ -12,6 +12,7 @@ steps:
|
|||||||
commands:
|
commands:
|
||||||
- git fetch -tq
|
- git fetch -tq
|
||||||
- pip install poetry poetry-dynamic-versioning -qq
|
- pip install poetry poetry-dynamic-versioning -qq
|
||||||
|
- poetry config experimental.new-installer false
|
||||||
- poetry install
|
- poetry install
|
||||||
- poetry run yapf -dr ./corenetworks
|
- poetry run yapf -dr ./corenetworks
|
||||||
environment:
|
environment:
|
||||||
@ -22,6 +23,7 @@ steps:
|
|||||||
commands:
|
commands:
|
||||||
- git fetch -tq
|
- git fetch -tq
|
||||||
- pip install poetry poetry-dynamic-versioning -qq
|
- pip install poetry poetry-dynamic-versioning -qq
|
||||||
|
- poetry config experimental.new-installer false
|
||||||
- poetry install
|
- poetry install
|
||||||
- poetry run flake8 ./corenetworks
|
- poetry run flake8 ./corenetworks
|
||||||
environment:
|
environment:
|
||||||
@ -51,6 +53,7 @@ steps:
|
|||||||
image: python:3.6
|
image: python:3.6
|
||||||
commands:
|
commands:
|
||||||
- pip install poetry poetry-dynamic-versioning -qq
|
- pip install poetry poetry-dynamic-versioning -qq
|
||||||
|
- poetry config experimental.new-installer false
|
||||||
- poetry install
|
- poetry install
|
||||||
- poetry run pytest
|
- poetry run pytest
|
||||||
- poetry version
|
- poetry version
|
||||||
@ -63,6 +66,7 @@ steps:
|
|||||||
image: python:3.7
|
image: python:3.7
|
||||||
commands:
|
commands:
|
||||||
- pip install poetry poetry-dynamic-versioning -qq
|
- pip install poetry poetry-dynamic-versioning -qq
|
||||||
|
- poetry config experimental.new-installer false
|
||||||
- poetry install
|
- poetry install
|
||||||
- poetry run pytest
|
- poetry run pytest
|
||||||
- poetry version
|
- poetry version
|
||||||
@ -75,6 +79,7 @@ steps:
|
|||||||
image: python:3.8
|
image: python:3.8
|
||||||
commands:
|
commands:
|
||||||
- pip install poetry poetry-dynamic-versioning -qq
|
- pip install poetry poetry-dynamic-versioning -qq
|
||||||
|
- poetry config experimental.new-installer false
|
||||||
- poetry install
|
- poetry install
|
||||||
- poetry run pytest
|
- poetry run pytest
|
||||||
- poetry version
|
- poetry version
|
||||||
@ -87,6 +92,7 @@ steps:
|
|||||||
image: python:3.9
|
image: python:3.9
|
||||||
commands:
|
commands:
|
||||||
- pip install poetry poetry-dynamic-versioning -qq
|
- pip install poetry poetry-dynamic-versioning -qq
|
||||||
|
- poetry config experimental.new-installer false
|
||||||
- poetry install
|
- poetry install
|
||||||
- poetry run pytest
|
- poetry run pytest
|
||||||
- poetry version
|
- poetry version
|
||||||
@ -133,6 +139,7 @@ steps:
|
|||||||
commands:
|
commands:
|
||||||
- git fetch -tq
|
- git fetch -tq
|
||||||
- pip install poetry poetry-dynamic-versioning -qq
|
- pip install poetry poetry-dynamic-versioning -qq
|
||||||
|
- poetry config experimental.new-installer false
|
||||||
- poetry install
|
- poetry install
|
||||||
- poetry run bandit -r ./corenetworks -x ./corenetworks/test
|
- poetry run bandit -r ./corenetworks -x ./corenetworks/test
|
||||||
environment:
|
environment:
|
||||||
@ -226,6 +233,7 @@ steps:
|
|||||||
commands:
|
commands:
|
||||||
- git fetch -tq
|
- git fetch -tq
|
||||||
- pip install poetry poetry-dynamic-versioning -qq
|
- pip install poetry poetry-dynamic-versioning -qq
|
||||||
|
- poetry config experimental.new-installer false
|
||||||
- poetry install
|
- poetry install
|
||||||
- make doc
|
- make doc
|
||||||
|
|
||||||
@ -336,6 +344,6 @@ depends_on:
|
|||||||
|
|
||||||
---
|
---
|
||||||
kind: signature
|
kind: signature
|
||||||
hmac: dc439b1215d4664d96d9ecaf5a2bbc73ffd033954747764940092b3520393dca
|
hmac: 18dfddcae247d4316e27cedf260d08fb2e3bef8a91f9bbd8db1d43a897299a88
|
||||||
|
|
||||||
...
|
...
|
||||||
|
Loading…
Reference in New Issue
Block a user