Commit dcffb8ed authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 697e58c8
...@@ -53,11 +53,6 @@ numpy = 1.16.6 ...@@ -53,11 +53,6 @@ numpy = 1.16.6
ipython = 5.10.0 ipython = 5.10.0
ipython-genutils = 0.2.0 ipython-genutils = 0.2.0
wcwidth = 0.2.5
more-itertools = 5.0.0
importlib-metadata = 1.7.0
funcsigs = 1.0.2
atomicwrites = 1.4.0
traitlets = 4.3.3 traitlets = 4.3.3
simplegeneric = 0.8.1 simplegeneric = 0.8.1
Pygments = 2.5.2 Pygments = 2.5.2
...@@ -65,9 +60,4 @@ prompt-toolkit = 1.0.18 ...@@ -65,9 +60,4 @@ prompt-toolkit = 1.0.18
pickleshare = 0.7.5 pickleshare = 0.7.5
pexpect = 4.8.0 pexpect = 4.8.0
backports.shutil-get-terminal-size = 1.0.0 backports.shutil-get-terminal-size = 1.0.0
backports.functools-lru-cache = 1.6.1
scandir = 1.10.0
zipp = 1.2.0
contextlib2 = 0.6.0.post1
configparser = 4.0.2
ptyprocess = 0.6.0 ptyprocess = 0.6.0
...@@ -10,5 +10,18 @@ egg = pytest ...@@ -10,5 +10,18 @@ egg = pytest
pytest = 4.6.11 pytest = 4.6.11
py = 1.9.0 py = 1.9.0
pluggy = 0.13.1 pluggy = 0.13.1
pathlib2= 2.3.5 pathlib2= 2.3.5
scandir = 1.10.0
wcwidth = 0.2.5
backports.functools-lru-cache = 1.6.1
more-itertools = 5.0.0
atomicwrites = 1.4.0
funcsigs = 1.0.2
importlib-metadata = 1.7.0
zipp = 1.2.0
contextlib2 = 0.6.0.post1
configparser = 4.0.2
...@@ -70,11 +70,6 @@ ipython = 5.10.0 ...@@ -70,11 +70,6 @@ ipython = 5.10.0
ipython-genutils = 0.2.0 ipython-genutils = 0.2.0
# XXX -> move component/pytest ? # XXX -> move component/pytest ?
wcwidth = 0.2.5
more-itertools = 5.0.0
importlib-metadata = 1.7.0
funcsigs = 1.0.2
atomicwrites = 1.4.0
traitlets = 4.3.3 traitlets = 4.3.3
simplegeneric = 0.8.1 simplegeneric = 0.8.1
Pygments = 2.5.2 Pygments = 2.5.2
...@@ -82,9 +77,4 @@ prompt-toolkit = 1.0.18 ...@@ -82,9 +77,4 @@ prompt-toolkit = 1.0.18
pickleshare = 0.7.5 pickleshare = 0.7.5
pexpect = 4.8.0 pexpect = 4.8.0
backports.shutil-get-terminal-size = 1.0.0 backports.shutil-get-terminal-size = 1.0.0
backports.functools-lru-cache = 1.6.1
scandir = 1.10.0
zipp = 1.2.0
contextlib2 = 0.6.0.post1
configparser = 4.0.2
ptyprocess = 0.6.0 ptyprocess = 0.6.0
...@@ -13,17 +13,22 @@ parts = ...@@ -13,17 +13,22 @@ parts =
zodbtools zodbtools
# for instance # for instance
zodbtools-python
slapos-cookbook slapos-cookbook
instance.cfg instance.cfg
# tune zodbtools to install with for-tests extras.
[zodbtools]
egg = zodbtools[test]
# bin/python is preinstalled with sys.path to zodbtools & friends. # bin/python is preinstalled with sys.path to zodbtools & friends.
[zodbtools] [zodbtools-python]
recipe = zc.recipe.egg:eggs
eggs = zodbtools[test]
interpreter = python interpreter = python
# interpreter code that buildout generates cannot process `-m pytest --<pytest-option>`
# -> use pymain from gpython to workaround that
initialization =
from gpython import pymain
pymain(sys.argv[1:])
sys.exit(0)
# env.sh for zodbtools's python to be on $PATH. # env.sh for zodbtools's python to be on $PATH.
[zodbtools-env.sh] [zodbtools-env.sh]
...@@ -40,4 +45,4 @@ workdir = ${zodbtools-repository:location} ...@@ -40,4 +45,4 @@ workdir = ${zodbtools-repository:location}
[versions] [versions]
# XXX freezegun = 1.0.0
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment