File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -60,8 +60,14 @@ services:
60
60
- PYTHON_USER=dja
61
61
- JUPYTER_PASSWORD=datajoint
62
62
working_dir : /src
63
- command : |
64
- pip install -e ".[test]"
65
- pip show datajoint
66
- pytest -sv --cov-report term-missing --cov=datajoint tests
63
+ volumes :
64
+ - .:/src
65
+ command :
66
+ - sh
67
+ - -c
68
+ - |
69
+ set -e
70
+ pip install -e ".[test]"
71
+ pip show datajoint
72
+ pytest -sv --cov-report term-missing --cov=datajoint tests
67
73
Original file line number Diff line number Diff line change @@ -58,6 +58,9 @@ Changelog = "https://github.com/datajoint/datajoint-python/blob/master/CHANGELOG
58
58
dj = " datajoint.cli:cli"
59
59
datajoint = " datajoint.cli:cli"
60
60
61
+ [tool .setuptools ]
62
+ packages = [" datajoint" ]
63
+
61
64
[build-system ]
62
65
requires = [" setuptools >= 61.0" ]
63
66
build-backend = " setuptools.build_meta"
You can’t perform that action at this time.
0 commit comments