Page MenuHomeSoftware Heritage

Build 1382

Lint

When
Completed at Oct 12 2017, 7:52 PM · Built for 7 s
Status
Passed
1 empty logs are hidden. Show all logs.

Build Log 4539 (remote - stdout)
25 - 50 - 100 - Unlimited Lines

1python3 -m flake8 swh bin/swh-storage-add-dir
2

Python tests

When
Completed at Oct 12 2017, 7:52 PM · Built for 5 s
Status
Passed
1 empty logs are hidden. Show all logs.

Build Log 4538 (remote - stderr)
25 - 50 - 100 - Unlimited Lines

1W: unknown repository 'swh-loader-antelink', you might want to remove it
2W: unknown repository 'swh-cloner-git', you might want to remove it
3W: unknown repository 'swh-environment', you might want to remove it
4W: unknown repository 'swh-lister-github', you might want to remove it
5W: unknown repository 'swh-web-ui', you might want to remove it
6W: unknown repository 'swh-lister-bitbucket', you might want to remove it
7W: unknown repository 'swh-fetcher-googlecode', you might want to remove it
8ctags_to_db (test_converters.TestConverters) ... ok
9db_to_author (test_converters.TestConverters) ... ok
10db_to_ctags (test_converters.TestConverters) ... ok
11db_to_fossology_license (test_converters.TestConverters) ... ok
12db_to_git_headers (test_converters.TestConverters) ... ok
13db_to_language (test_converters.TestConverters) ... ok
14db_to_metadata (test_converters.TestConverters) ... ok
15db_to_mimetype (test_converters.TestConverters) ... ok
16db_to_release (test_converters.TestConverters) ... ok
17db_to_revision (test_converters.TestConverters) ... ok
18
19----------------------------------------------------------------------
20Ran 10 tests in 3.048s
21
22OK
23

Update environment from working copy

When
Completed at Oct 12 2017, 7:52 PM · Built for 35 s
Status
Passed
1 empty logs are hidden. Show all logs.

Build Log 4535 (remote - stdout)
25 - 50 - 100 - Unlimited Lines

684mr update: /home/temp-drydock/drydock/workingcopy-177/repo/swh-environment/swh-vault
685From ssh://forge.softwareheritage.org/diffusion/DVAU/swh-vault
686 6f4441b..1edcd77 master -> origin/master
687Updating 6f4441b..1edcd77
688Fast-forward
689 debian/control | 21 ++-
690 debian/rules | 8 +-
691 docs/.gitignore | 3 +
692 docs/Makefile | 1 +
693 docs/_static/.placeholder | 0
694 docs/_templates/.placeholder | 0
695 docs/conf.py | 1 +
696 docs/index.rst | 15 ++
697 requirements-swh.txt | 2 +-
698 setup.py | 1 +
699 sql/swh-vault-schema.sql | 2 +
700 swh/__init__.py | 1 +
701 swh/vault/api/server.py | 12 +-
702 swh/vault/backend.py | 81 +++++++++--
703 swh/vault/cache.py | 62 ++++-----
704 swh/vault/cookers/base.py | 14 +-
705 swh/vault/cooking_tasks.py | 4 +-
706 swh/vault/tests/test_backend.py | 290 +++++++++++++++++++++++++++++++++++++++
707 swh/vault/tests/test_cache.py | 76 ++++++++++
708 swh/vault/tests/test_cookers.py | 272 ++++++++++++++++++++++++++++++++++++
709 swh/vault/tests/vault_testing.py | 63 +++++++++
710 21 files changed, 862 insertions(+), 67 deletions(-)
711 create mode 100644 docs/.gitignore
712 create mode 100644 docs/Makefile
713 create mode 100644 docs/_static/.placeholder
714 create mode 100644 docs/_templates/.placeholder
715 create mode 100644 docs/conf.py
716 create mode 100644 docs/index.rst
717 create mode 100644 swh/__init__.py
718 create mode 100644 swh/vault/tests/test_backend.py
719 create mode 100644 swh/vault/tests/test_cache.py
720 create mode 100644 swh/vault/tests/test_cookers.py
721 create mode 100644 swh/vault/tests/vault_testing.py
722
723mr checkout: /home/temp-drydock/drydock/workingcopy-177/repo/swh-environment/swh-web
724mr checkout: /home/temp-drydock/drydock/workingcopy-177/repo/swh-environment/swh-web
725Cloning into 'swh-web'...
726
727mr update: /home/temp-drydock/drydock/workingcopy-177/repo/swh-environment/swh-storage
728mr update: /home/temp-drydock/drydock/workingcopy-177/repo/swh-environment/swh-storage
729From ssh://forge.softwareheritage.org/diffusion/DSTO/swh-storage
730 b8c480f..d35e739 master -> origin/master
731 * [new tag] v0.0.89 -> v0.0.89
732 * [new tag] v0.0.90 -> v0.0.90
733 * [new tag] v0.0.91 -> v0.0.91
734Updating b8c480f..d35e739
735Fast-forward
736 debian/control | 22 +-
737 debian/rules | 14 +-
738 docs/.gitignore | 3 +
739 docs/Makefile | 1 +
740 docs/_static/.placeholder | 0
741 docs/_templates/.placeholder | 0
742 docs/conf.py | 1 +
743 docs/index.rst | 15 +
744 requirements-swh.txt | 3 +-
745 requirements.txt | 1 -
746 setup.py | 13 +-
747 .../revision_metadata.translated_metadata.json | 59 ++
748 sql/swh-data.sql | 6 +
749 sql/swh-func.sql | 282 ++++++++-
750 sql/swh-indexes.sql | 25 +
751 sql/swh-schema.sql | 37 +-
752 sql/upgrades/108.sql | 58 ++
753 sql/upgrades/109.sql | 33 ++
754 swh/__init__.py | 1 +
755 swh/storage/api/client.py | 24 +
756 swh/storage/api/server.py | 36 ++
757 swh/storage/converters.py | 81 ++-
758 swh/storage/db.py | 61 ++
759 swh/storage/listener.py | 13 +-
760 swh/storage/schemata/distribution.py | 250 ++++++++
761 swh/storage/storage.py | 461 ++++++++++-----
762 swh/storage/tests/server_testing.py | 3 +-
763 swh/storage/tests/storage_testing.py | 72 +++
764 swh/storage/tests/test_api_client.py | 2 +-
765 swh/storage/tests/test_converters.py | 26 +
766 swh/storage/tests/test_db.py | 4 +-
767 swh/storage/tests/test_storage.py | 630 ++++++++++++++++++---
768 32 files changed, 1925 insertions(+), 312 deletions(-)
769 create mode 100644 docs/.gitignore
770 create mode 100644 docs/Makefile
771 create mode 100644 docs/_static/.placeholder
772 create mode 100644 docs/_templates/.placeholder
773 create mode 100644 docs/conf.py
774 create mode 100644 docs/index.rst
775 create mode 100644 sql/json/revision_metadata.translated_metadata.json
776 create mode 100644 sql/upgrades/108.sql
777 create mode 100644 sql/upgrades/109.sql
778 create mode 100644 swh/__init__.py
779 create mode 100644 swh/storage/schemata/distribution.py
780 create mode 100644 swh/storage/tests/storage_testing.py
781
782mr update: finished (24 ok)
783

Clone on Software Heritage Worker

When
Completed at Oct 12 2017, 7:51 PM · Built instantly
Status
Passed

Event Timeline