Replies: 4 comments 3 replies
-
The tool nox can help us to automate testing for different python versions. And the plugin pytest-cov let’s you know what portion of the code is already covered by the tests. Is there a way to specify dependencies required only for development/testing in I followed the blog post Hypermodern Python and really liked using these tools. |
Beta Was this translation helpful? Give feedback.
-
Hi @qku , as you have already noticed, the Proper deployment (not distribution) and missing unit tests have been a thorn in my side ever since the release of For the choice of tools in general I would be very careful about regarding information from a single source as universal truth on the matter, regardless on how convincing it might seem. I have been maintaining Python projects (especially I'm not against third-party tooling in general, I just take the "official" tools as a safe bet until I have done extensive research and found something better (to maintain). In the end it always comes down to a balance between maintainability (very limited workforce) and functionality (alway check if you actually need the feature or if it is just appealing to your tech enthusiasm). Regarding the capabilities of TL;DR |
Beta Was this translation helpful? Give feedback.
-
Hi guys, I am attemping to work on this. I am working on automatically building documentation from docstrings right now and plan to add unit tests and the whole CI/ CD stuff eventually. I am working on these on a fork, https://github.com/prithviulm/qudi-core. Any help/ suggestions/ comments would be appreciated! |
Beta Was this translation helpful? Give feedback.
-
@prithviulm That's great news. I would be happy to help and hear how is the work coming along? |
Beta Was this translation helpful? Give feedback.
-
Hello, I am curious if somebody already thought about how to implement testing for qudi-core. There a few tests of fitting models in the tests folder right now based on
unittest
(they fail btw). Are there reasons for choosingunittest
overpytest
? I am still rather new to testing but it looks to me likepytest
is the de-facto standard here.Beta Was this translation helpful? Give feedback.
All reactions