- 04 Dec, 2020 13 commits
-
-
Jérome Perrin authored
With nexedi/slapos!862 we no longer need this See merge request nexedi/slapos.core!270
-
Rafael Monnerat authored
Only assert the essential, otherwise any minor change on the zpt is a useless diff that pops up
-
Rafael Monnerat authored
Mock NotificationTool_getDocumentValue to ensure the None as return value, in order to not find eventual valid notification messages with random content from other tests or dev environment. No need to assert entire message, it is enought to assert message isn't empty and assert a subset of it.
-
Rafael Monnerat authored
This allows extend values w/o duplicate the whole test.
-
Rafael Monnerat authored
-
Rafael Monnerat authored
Simplify the extensions on testSlapOSConfigurator to the expected bt5 and modules list
-
Rafael Monnerat authored
-
Rafael Monnerat authored
This allow us to translate and re-run the tests with real notification messages.
-
Rafael Monnerat authored
It ensure that selected payment is from the proper user.
-
Rafael Monnerat authored
Also, keep paths specific to not conflict with extra business templates. We don't want a polluted list after the installation of extra bt5 on development or project specific environments.
-
Rafael Monnerat authored
-
Rafael Monnerat authored
This allow introduce minor custom changes on project specific context w/o re-implement the whole test.
-
Rafael Monnerat authored
This makes easy to overwrite and custom the list on sub-level projects
-
- 02 Dec, 2020 2 commits
-
-
Jérome Perrin authored
we no longer use python setup.py test
-
Jérome Perrin authored
We were doing this because we use to run tests with `python setup.py test` which automatically sets PYTHONPATH, so it was affecting sub processes started by standalone. Nowadays we no longer use this method of running tests, so we are not really supposed to use PYTHONPATH, so we don't unset this environment variable, there might be valid cases where users want to force a different python path (but I can not think of any) and it simplifies the code a bit.
-
- 01 Dec, 2020 3 commits
-
-
Rafael Monnerat authored
-
Rafael Monnerat authored
Reported-by: Romain
-
Rafael Monnerat authored
-
- 30 Nov, 2020 1 commit
-
-
Jérome Perrin authored
-
- 27 Nov, 2020 3 commits
-
-
Jérome Perrin authored
Instead of letting slapos commands start supervisord in daemon mode, run it as a program from standalone supervisord daemon. The $INSTANCE/etc/supervisord.conf will be created by `slapos node instance` the first time user runs it, until this, the service will restart in a loop, complaining that config file is not found. Also review stop to expose timeout argument and use a longer timeout by default (and cleanup some unused imports).
-
Jérome Perrin authored
I guess this code was using python -S to try to be independant from anything that can happen in site.py, but that's not needed when running on testnode. pygolang.pymain does not support -S and we are moving tests environments to use pygolang.pymain, so let's remove this if we don't need it.
-
Jérome Perrin authored
- also write pid file to prevent race condition - check user is root See merge request nexedi/slapos.core!267
-
- 26 Nov, 2020 8 commits
-
-
Rafael Monnerat authored
Defined on the Constraint
-
Rafael Monnerat authored
-
Rafael Monnerat authored
-
Rafael Monnerat authored
-
Rafael Monnerat authored
-
Rafael Monnerat authored
Include more verbose to the scripts to make debug easier.
-
Thomas Gambier authored
See merge request !268
-
Jérome Perrin authored
-
- 25 Nov, 2020 1 commit
-
-
Thomas Gambier authored
When comparing OS to see if they match for binary cache, we only compare the lower case distribution name because sometimes "Debian' is capitalized and sometimes not.
-
- 24 Nov, 2020 9 commits
-
-
Rafael Monnerat authored
It helps multi-account users to identify better where the notifications are coming from.
-
Rafael Monnerat authored
-
Rafael Monnerat authored
-
Rafael Monnerat authored
-
Rafael Monnerat authored
-
Rafael Monnerat authored
On Regularisation Requests context.
-
Rafael Monnerat authored
We don't want extra movements been created, so this changes overwrites this behaviour of erp5.
-
Rafael Monnerat authored
Invoice display's if user's organisation name (if set, in addition to his) and organisation address (if set replaces his), so his company can be invoiced rather them user.
-
Jérome Perrin authored
I had a Theia instance where I installed buildout with `pip install -e --user /path/to/checkout` and later deleted that `/path/to/checkout` and this made it impossible to run instance buildout, failing with import error when importing zc.buildout in buildout script. This is because python load user site packages by default. I believe we don't want this, a broken user site package should not prevent slapos from running buildout. These changes are about running buildout with `PYTHONNOUSERSITE` set, so that python ignores user site packages when running buildout. references: * https://docs.python.org/3/using/cmdline.html#envvar-PYTHONNOUSERSITE * https://docs.python.org/3/library/site.html#site.ENABLE_USER_SITE See merge request !266
-