Skip to content
Snippets Groups Projects
Verified Commit c451ecd5 authored by Vincent Sellier's avatar Vincent Sellier
Browse files

Add new field OriginVisitStatus.type field on test data

Related to T2964
parent 5f7e4337
No related branches found
Tags v0.6.2
1 merge request!195Add new field OriginVisitStatus.type field on test data
swh.model >= 0.7.2
swh.model >= 0.10.0
......@@ -196,6 +196,7 @@ ORIGIN_VISIT_STATUSES = [
origin=ORIGINS[0].url,
date=datetime.datetime(2013, 5, 7, 4, 20, 39, 432222, tzinfo=UTC),
visit=1,
type="git",
status="ongoing",
snapshot=None,
metadata=None,
......@@ -204,6 +205,7 @@ ORIGIN_VISIT_STATUSES = [
origin=ORIGINS[1].url,
date=datetime.datetime(2014, 11, 27, 17, 21, 12, tzinfo=UTC),
visit=1,
type="hg",
status="ongoing",
snapshot=None,
metadata=None,
......@@ -212,6 +214,7 @@ ORIGIN_VISIT_STATUSES = [
origin=ORIGINS[0].url,
date=datetime.datetime(2018, 11, 27, 17, 20, 59, tzinfo=UTC),
visit=2,
type="git",
status="ongoing",
snapshot=None,
metadata=None,
......@@ -220,6 +223,7 @@ ORIGIN_VISIT_STATUSES = [
origin=ORIGINS[0].url,
date=datetime.datetime(2018, 11, 27, 17, 20, 49, tzinfo=UTC),
visit=3,
type="git",
status="full",
snapshot=hash_to_bytes("17d0066a4a80aba4a0e913532ee8ff2014f006a9"),
metadata=None,
......@@ -228,6 +232,7 @@ ORIGIN_VISIT_STATUSES = [
origin=ORIGINS[1].url,
date=datetime.datetime(2015, 11, 27, 17, 22, 18, tzinfo=UTC),
visit=2,
type="hg",
status="partial",
snapshot=hash_to_bytes("8ce268b87faf03850693673c3eb5c9bb66e1ca38"),
metadata=None,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment