Test clean_dangling_folders which is used by most of the loaders.
Details
Diff Detail
- Repository
- rDLDBASE Generic VCS/Package Loader
- Lint
Automatic diff as part of commit; lint not applicable. - Unit
Automatic diff as part of commit; unit tests not applicable.
Event Timeline
Build has FAILED
Link to build: https://jenkins.softwareheritage.org/job/DLDBASE/job/tox/105/
See console output for more information: https://jenkins.softwareheritage.org/job/DLDBASE/job/tox/105/console
Fix pep8 violations
(build failure: I have some setup issues with flake8/codespell i need
to attend to)
Build has FAILED
Link to build: https://jenkins.softwareheritage.org/job/DLDBASE/job/tox/107/
See console output for more information: https://jenkins.softwareheritage.org/job/DLDBASE/job/tox/107/console
Build has FAILED
Link to build: https://jenkins.softwareheritage.org/job/DLDBASE/job/tox/108/
See console output for more information: https://jenkins.softwareheritage.org/job/DLDBASE/job/tox/108/console
Build has FAILED
Link to build: https://jenkins.softwareheritage.org/job/DLDBASE/job/tox/109/
See console output for more information: https://jenkins.softwareheritage.org/job/DLDBASE/job/tox/109/console
Build has FAILED
Link to build: https://jenkins.softwareheritage.org/job/DLDBASE/job/tox/110/
See console output for more information: https://jenkins.softwareheritage.org/job/DLDBASE/job/tox/110/console
Make the tests check the folder independently from order
I had a divergence between local testing and the ci's.
(I cannot use tox on my nixos machine right now so i use only pytest)
Build is green
See https://jenkins.softwareheritage.org/job/DLDBASE/job/tox/111/ for more details.
Build is green
See https://jenkins.softwareheritage.org/job/DLDBASE/job/tox/112/ for more details.
nitpick:
@patch('foo')
def test_bar(foo):
foo.return_value = 42
pass # ...can be replaced by:
@patch('foo', 42)
def test_bar():
pass # ...Build is green
See https://jenkins.softwareheritage.org/job/DLDBASE/job/tox/113/ for more details.