Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 27 additions & 18 deletions tests/sample_data/repository.json
Original file line number Diff line number Diff line change
@@ -1,61 +1,65 @@
[
{
"pk": 1,
"model": "model.repository",
"fields": {
"dvcs_type": "hg",
"name": "mozilla-central",
"url": "https://hg.mozilla.org/mozilla-central",
"active_status": "active",
"codebase": "gecko",
"repository_group": 1,
"repository_group": [
"development"
],
"life_cycle_order": 10,
"description": "",
"expire_performance_data": false,
"tc_root_url": "https://firefox-ci-tc.services.mozilla.com"
}
},
{
"pk": 4,
"model": "model.repository",
"fields": {
"dvcs_type": "hg",
"name": "try",
"url": "https://hg.mozilla.org/try",
"active_status": "active",
"codebase": "gecko",
"repository_group": 1,
"repository_group": [
"development"
],
"description": "",
"is_try_repo": true,
"tc_root_url": "https://firefox-ci-tc.services.mozilla.com"
}
},
{
"pk": 5,
"model": "model.repository",
"fields": {
"dvcs_type": "hg",
"name": "mozilla-aurora",
"url": "https://hg.mozilla.org/releases/mozilla-aurora",
"active_status": "onhold",
"codebase": "gecko",
"repository_group": 2,
"repository_group": [
"release-stabilization"
],
"description": "",
"performance_alerts_enabled": true,
"expire_performance_data": false,
"tc_root_url": "https://firefox-ci-tc.services.mozilla.com"
}
},
{
"pk": 6,
"model": "model.repository",
"fields": {
"dvcs_type": "hg",
"name": "mozilla-beta",
"url": "https://hg.mozilla.org/releases/mozilla-beta",
"active_status": "active",
"codebase": "gecko",
"repository_group": 2,
"repository_group": [
"release-stabilization"
],
"life_cycle_order": 100,
"description": "",
"performance_alerts_enabled": true,
Expand All @@ -64,15 +68,16 @@
}
},
{
"pk": 7,
"model": "model.repository",
"fields": {
"dvcs_type": "hg",
"name": "mozilla-release",
"url": "https://hg.mozilla.org/releases/mozilla-release",
"active_status": "active",
"codebase": "gecko",
"repository_group": 2,
"repository_group": [
"release-stabilization"
],
"life_cycle_order": 1000,
"description": "",
"performance_alerts_enabled": true,
Expand All @@ -81,60 +86,64 @@
}
},
{
"pk": 8,
"model": "model.repository",
"fields": {
"dvcs_type": "hg",
"name": "mozilla-esr17",
"url": "https://hg.mozilla.org/releases/mozilla-esr17",
"active_status": "onhold",
"codebase": "gecko",
"repository_group": 2,
"repository_group": [
"release-stabilization"
],
"description": "",
"tc_root_url": "https://firefox-ci-tc.services.mozilla.com"
}
},
{
"pk": 77,
"model": "model.repository",
"fields": {
"dvcs_type": "hg",
"name": "autoland",
"url": "https://hg.mozilla.org/integration/autoland",
"active_status": "active",
"codebase": "gecko",
"repository_group": 1,
"repository_group": [
"development"
],
"description": "The destination for automatically landed Firefox commits.",
"performance_alerts_enabled": true,
"expire_performance_data": false,
"tc_root_url": "https://firefox-ci-tc.services.mozilla.com"
}
},
{
"pk": 114,
"model": "model.repository",
"fields": {
"dvcs_type": "hg",
"name": "mozilla-esr78",
"url": "https://hg.mozilla.org/releases/mozilla-esr78",
"active_status": "active",
"codebase": "gecko",
"repository_group": 2,
"repository_group": [
"release-stabilization"
],
"life_cycle_order": 10000,
"description": "",
"tc_root_url": "https://firefox-ci-tc.services.mozilla.com"
}
},
{
"pk": 115,
"model": "model.repository",
"fields": {
"dvcs_type": "hg",
"name": "comm-esr78",
"url": "https://hg.mozilla.org/releases/comm-esr78",
"active_status": "active",
"codebase": "comm",
"repository_group": 8,
"repository_group": [
"comm-repositories"
],
"description": "",
"tc_root_url": "https://firefox-ci-tc.services.mozilla.com"
}
Expand Down
3 changes: 0 additions & 3 deletions tests/sample_data/repository_group.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,19 @@
[
{
"pk": 1,
"model": "model.repositorygroup",
"fields": {
"name": "development",
"description": "Collection of repositories where code initially lands in the development process"
}
},
{
"pk": 2,
"model": "model.repositorygroup",
"fields": {
"name": "release-stabilization",
"description": "Collection of repositories further along the release process"
}
},
{
"pk": 8,
"model": "model.repositorygroup",
"fields": {
"name": "comm-repositories",
Expand Down
Loading