Borja Esteban

Results 19 comments of Borja Esteban

Could be merged to the template? I find that pretty useful, specially for noobies

Thanks for the help, I tried but it fails: ```bash $ curl -X 'POST' \ > 'http://localhost:5000/results/265ddee1-555d-47d6-90cb-6279c730218c/report' \ > -H 'accept: application/json' \ > -H 'Content-Type: text/plain' \ > -d...

To support both *communities* (agree axios looks wired... ejm ejm) the better would might be to "decode" the axios transformation back. To do so, you mentioned that you are using`marshmallow`&`flask_smorest`,...

You should configure **`@pytest.fixture(autouse=True)`** on your db_session fixture. Then it will apply to all tests on the conftest.py (or all if it is on your parent tests folder). ```py @pytest.fixture(scope='function',...

@sirlantis I see the point, however, to link the session to the registration... would it be safe if the API you are testing also changes the db state? What if...

@dcherian, you are welcome. Not sure if it helps, but normally I clean by just dropping the bound after the opeation:. That cleans the warnings: ```py >>> ds.cf.mean('latitude') >>> ds...

Same problem here. When I create my image I get the following: ```sh $ udocker create --name=o3skim synergyimk/o3skim ... usr/local/lib/python3.8/xmlrpc/__pycache__/ usr/local/lib/python3.8/xmlrpc/__pycache__/__init__.cpython-38.pyc usr/local/lib/python3.8/xmlrpc/__pycache__/client.cpython-38.pyc Error: while extracting image layer .... Error: creating...

Related to this issue, the reference https://bandit.readthedocs.io/en/1.7.5/plugins/b603_subprocess_without_shell_equals_true.html says we should use `shell=True` and gives some references. However, when reading the references, those say the oposite, that we should avoid `shell=True`....

@IgnacioHeredia, I think this issue is related to what we spoke today. I was testing with @vykozlov and there might be a race condition somewhere: - Starting with `--debug` and...

Hi added tests and pass for linux but not for windows: I tried to raise an error message like this: `f.write("echo 'this err' >&2\n")` -to-> `f.write("echo this err 1>&2\n")` however...