Properties
Properties
- Buildable
- B1058: rDSTO89b9ce4028ac: db schema chart: use more current titles for some clusters
- Build Plan
- Plan 2 Software Heritage Python tests
- Status
Passed
Lint
Lint
- When
- Completed at Oct 21 2017, 3:55 PM · Built for 6 s
- Status
Passed
1 empty logs are hidden. Show all logs.
1 | python3 -m flake8 swh bin/swh-storage-add-dir |
---|---|
2 |
Python tests
Python tests
- When
- Completed at Oct 21 2017, 3:55 PM · Built for 7 s
- Status
Passed
1 empty logs are hidden. Show all logs.
1 | W: unknown repository 'swh-loader-antelink', you might want to remove it |
---|---|
2 | W: unknown repository 'swh-cloner-git', you might want to remove it |
3 | W: unknown repository 'swh-environment', you might want to remove it |
4 | W: unknown repository 'swh-lister-github', you might want to remove it |
5 | W: unknown repository 'swh-web-ui', you might want to remove it |
6 | W: unknown repository 'swh-lister-bitbucket', you might want to remove it |
7 | W: unknown repository 'swh-fetcher-googlecode', you might want to remove it |
8 | ctags_to_db (test_converters.TestConverters) ... ok |
9 | db_to_author (test_converters.TestConverters) ... ok |
10 | db_to_ctags (test_converters.TestConverters) ... ok |
11 | db_to_fossology_license (test_converters.TestConverters) ... ok |
12 | db_to_git_headers (test_converters.TestConverters) ... ok |
13 | db_to_language (test_converters.TestConverters) ... ok |
14 | db_to_metadata (test_converters.TestConverters) ... ok |
15 | db_to_mimetype (test_converters.TestConverters) ... ok |
16 | db_to_release (test_converters.TestConverters) ... ok |
17 | db_to_revision (test_converters.TestConverters) ... ok |
18 | |
19 | ---------------------------------------------------------------------- |
20 | Ran 10 tests in 3.061s |
21 | |
22 | OK |
23 |
Update environment from working copy
Update environment from working copy
- When
- Completed at Oct 21 2017, 3:55 PM · Built for 33 s
- Status
Passed
1 empty logs are hidden. Show all logs.
447 | docs/uri-scheme-api-origin.rst | 210 +++++ |
---|---|
448 | docs/uri-scheme-api-stat.rst | 65 ++ |
449 | docs/uri-scheme-api.rst | 15 + |
450 | docs/uri-scheme-browse-content.rst | 83 ++ |
451 | docs/uri-scheme-browse-directory.rst | 31 + |
452 | docs/uri-scheme-browse-origin.rst | 481 ++++++++++++ |
453 | docs/uri-scheme-browse-person.rst | 10 + |
454 | docs/uri-scheme-browse-revision.rst | 60 ++ |
455 | docs/uri-scheme-browse.rst | 105 +++ |
456 | docs/uri-scheme.rst | 487 ------------ |
457 | setup.py | 10 +- |
458 | swh/__init__.py | 1 + |
459 | swh/web/__init__.py | 0 |
460 | swh/web/api/utils.py | 7 +- |
461 | swh/web/api/views/__init__.py | 90 --- |
462 | swh/web/api/views/content.py | 2 +- |
463 | swh/web/api/views/directory.py | 2 +- |
464 | swh/web/api/views/entity.py | 2 +- |
465 | swh/web/api/views/origin.py | 2 +- |
466 | swh/web/api/views/person.py | 2 +- |
467 | swh/web/api/views/release.py | 2 +- |
468 | swh/web/api/views/revision.py | 2 +- |
469 | swh/web/api/views/utils.py | 90 +++ |
470 | swh/web/browse/urls.py | 1 + |
471 | swh/web/browse/utils.py | 142 ++++ |
472 | swh/web/browse/views/content.py | 5 +- |
473 | swh/web/browse/views/directory.py | 11 +- |
474 | swh/web/browse/views/origin.py | 357 ++++++--- |
475 | swh/web/browse/views/revision.py | 144 ++++ |
476 | swh/web/common/highlightjs.py | 1 + |
477 | swh/web/common/utils.py | 27 +- |
478 | swh/web/doc_config.py | 21 + |
479 | swh/web/settings/common.py | 2 +- |
480 | swh/web/settings/production.py | 6 + |
481 | swh/web/settings/tests.py | 38 + |
482 | swh/web/static/css/style.css | 46 ++ |
483 | swh/web/templates/content.html | 7 +- |
484 | swh/web/templates/directory.html | 11 +- |
485 | .../top-navigation.html} | 6 +- |
486 | swh/web/templates/origin.html | 2 +- |
487 | swh/web/templates/revision-log.html | 177 +---- |
488 | swh/web/templates/revision.html | 119 +-- |
489 | swh/web/tests/__init__.py | 35 +- |
490 | swh/web/tests/api/test_api_lookup.py | 18 +- |
491 | swh/web/tests/browse/test_utils.py | 194 +++++ |
492 | swh/web/tests/browse/views/data/__init__.py | 0 |
493 | .../tests/browse/views/data/revision_test_data.py | 859 +++++++++++++++++++++ |
494 | swh/web/tests/browse/views/test_origin.py | 6 +- |
495 | swh/web/tests/browse/views/test_revision.py | 177 +++++ |
496 | swh/web/tests/common/test_throttling.py | 2 +- |
497 | swh/web/tests/common/test_utils.py | 5 + |
498 | swh/web/urls.py | 23 - |
499 | swh/web/wsgi.py | 9 - |
500 | 59 files changed, 3553 insertions(+), 1049 deletions(-) |
501 | create mode 100644 docs/uri-scheme-api-content.rst |
502 | create mode 100644 docs/uri-scheme-api-directory.rst |
503 | create mode 100644 docs/uri-scheme-api-origin.rst |
504 | create mode 100644 docs/uri-scheme-api-stat.rst |
505 | create mode 100644 docs/uri-scheme-api.rst |
506 | create mode 100644 docs/uri-scheme-browse-content.rst |
507 | create mode 100644 docs/uri-scheme-browse-directory.rst |
508 | create mode 100644 docs/uri-scheme-browse-origin.rst |
509 | create mode 100644 docs/uri-scheme-browse-person.rst |
510 | create mode 100644 docs/uri-scheme-browse-revision.rst |
511 | create mode 100644 docs/uri-scheme-browse.rst |
512 | delete mode 100644 docs/uri-scheme.rst |
513 | create mode 100644 swh/__init__.py |
514 | create mode 100644 swh/web/__init__.py |
515 | create mode 100644 swh/web/api/views/utils.py |
516 | create mode 100644 swh/web/browse/views/revision.py |
517 | create mode 100644 swh/web/doc_config.py |
518 | create mode 100644 swh/web/settings/tests.py |
519 | rename swh/web/templates/{content-directory-top-navigation.html => includes/top-navigation.html} (71%) |
520 | create mode 100644 swh/web/tests/browse/views/data/__init__.py |
521 | create mode 100644 swh/web/tests/browse/views/data/revision_test_data.py |
522 | create mode 100644 swh/web/tests/browse/views/test_revision.py |
523 | |
524 | mr update: /home/temp-drydock/drydock/workingcopy-173/repo/swh-environment/swh-storage |
525 | mr update: /home/temp-drydock/drydock/workingcopy-173/repo/swh-environment/swh-storage |
526 | From ssh://forge.softwareheritage.org/diffusion/DSTO/swh-storage |
527 | b8f5018..8915caf master -> origin/master |
528 | * [new tag] v0.0.89 -> v0.0.89 |
529 | * [new tag] v0.0.90 -> v0.0.90 |
530 | * [new tag] v0.0.91 -> v0.0.91 |
531 | * [new tag] v0.0.92 -> v0.0.92 |
532 | Updating b8f5018..8915caf |
533 | Fast-forward |
534 | debian/control | 4 ++-- |
535 | debian/rules | 5 +++-- |
536 | requirements.txt | 1 - |
537 | setup.py | 11 +++-------- |
538 | sql/clusters.dot | 21 ++++++++++++++++----- |
539 | swh/__init__.py | 1 + |
540 | swh/storage/converters.py | 2 +- |
541 | swh/storage/schemata/distribution.py | 8 +++++++- |
542 | 8 files changed, 33 insertions(+), 20 deletions(-) |
543 | create mode 100644 swh/__init__.py |
544 | |
545 | mr update: finished (24 ok) |
546 |
Clone on Software Heritage Worker
Clone on Software Heritage Worker
- When
- Completed at Oct 21 2017, 3:54 PM · Built instantly
- Status
Passed