Jan Vlčinský
Jan Vlčinský
@matbennet I was considering "fail loudly" option too. The reason I prefer to continue (and print "undefined!!!" in banner) is, that it allows to run shell and investigate current configuration....
@antl31 make sure, you run the test within proper python environment. I have similar issues, when: - having pytest installed globally - having project with virtual environment with it's own...
@kuoiea you are reporting the issue against nameko version 2.12.0. Consider testing the issue against version or branch v3.0.0-rc To me it seems, the stacktrace shows problems to connect to...
One possible solution would be to add to `foreignKey` another property called `skipIfNone` which would define rules for skipping checking `foreignKey` constraint for records having `None` value: - `True`: if...
To reproduce the problem, see https://github.com/ramses-tech/ramses-example/issues/59
Yes, to manage virtualenvs I use `tox` from which I request installation of packages listed in `requirements.txt`. Tested for Python 2.7.12 and 3.5.2 on Ubuntu 16.04.
Simple test is: ``` python >>> from nefertari.utils.dictset import dictset >>> dset = dictset({"a": 11, "b": 22}) >>> dset["a"] 11 >>> dset["b"] 22 >>> dset.a 11 >>> dset.b 22 >>>...
`xh` does not process query parameter read from file as `httpie` does: ## Prepare a file with value for query parameter First we create a file with a value to...
@ducaale great. Just a note: `http` does urlencoding for the values read from the file before putting it into final url string.
Quick test building Dash doc using sphinxcontrib-dashbuilder shows, it is probably broken. The [repository](https://bitbucket.org/shimizukawa/sphinxcontrib-dashbuilder) lives on Bitbucket, has very few commits from 2014, has no issue tracker and when I...