"Fix egg on dependency links [SKIP CI]."

This commit is contained in:
Sergio Morillo 2021-01-05 22:47:55 +01:00
parent 8b9e4de553
commit 8c9ea059d4
3 changed files with 10 additions and 8 deletions

View File

@ -41,4 +41,10 @@ matrix:
DATABASE: sqlite
- IMAGE: python:3.7
TOXENV: py37
DATABASE: postgresql
- IMAGE: python:3.8
TOXENV: py38
DATABASE: sqlite
- IMAGE: python:3.8
TOXENV: py38
DATABASE: postgresql

View File

@ -51,17 +51,13 @@ else:
dependency_links = {
'carrier_load_ul':
'git+https://gitlab.com/datalifeit/'
'trytond-carrier_load_ul@%(branch)s'
'#egg=datalife_carrier_load_ul-%(series)s' % {
'trytond-carrier_load_ul@%(branch)s' % {
'branch': branch,
'series': series,
},
'stock_move_done2cancel':
'git+https://gitlab.com/datalifeit/'
'trytond-stock_move_done2cancel@%(branch)s'
'#egg=datalife_stock_move_done2cancel-%(series)s' % {
'trytond-stock_move_done2cancel@%(branch)s' % {
'branch': branch,
'series': series,
}
}

View File

@ -1,10 +1,10 @@
[tox]
envlist = {py36,py37}-{sqlite,postgresql},pypy3-{sqlite,postgresql}
envlist = {py36,py37,py38}-{sqlite,postgresql},pypy3-{sqlite,postgresql}
[testenv]
commands = {envpython} setup.py test
deps =
{py36,py37}-postgresql: psycopg2 >= 2.5
{py36,py37,py38}-postgresql: psycopg2 >= 2.5
pypy3-postgresql: psycopg2cffi >= 2.5
{py36}-sqlite: sqlitebck
setenv =