Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
Managetests
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
5
Issues
5
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gruppo Web
Managetests
Commits
13d911c9
Commit
13d911c9
authored
Dec 07, 2015
by
Pietro Albini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clarified license status (AGPLv3+)
parent
132af354
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
94 additions
and
22 deletions
+94
-22
README.md
README.md
+1
-1
managetests/__init__.py
managetests/__init__.py
+15
-7
managetests/branches.py
managetests/branches.py
+15
-7
managetests/gitlab.py
managetests/gitlab.py
+15
-7
managetests/gunicorn_config.py
managetests/gunicorn_config.py
+16
-0
managetests/instances.py
managetests/instances.py
+16
-0
managetests/webhooks.py
managetests/webhooks.py
+16
-0
No files found.
README.md
View file @
13d911c9
...
@@ -6,7 +6,7 @@ permette una sincronizzazione dei branch con i merge request presenti sul
...
@@ -6,7 +6,7 @@ permette una sincronizzazione dei branch con i merge request presenti sul
repository. È anche altamente specifico per la nostra configurazione, quindi
repository. È anche altamente specifico per la nostra configurazione, quindi
potrebbe non funzionare in contesti differenti.
potrebbe non funzionare in contesti differenti.
Managetests è rilasciato sotto licenza GNU-AGPL v3.
Managetests è rilasciato sotto licenza GNU-AGPL v3
+
.
## Inizializzazione di managetests
## Inizializzazione di managetests
...
...
managetests/__init__.py
View file @
13d911c9
"""
# A program which manages Ubuntu-it's web test server
testsmanager
# Copyright (C) 2015 Pietro Albini <pietroalbini@ubuntu.com>
Test instances manager for the Ubuntu-it website
#
# This program is free software: you can redistribute it and/or modify
Copyright (c) 2015 Pietro Albini
# it under the terms of the GNU Affero General Public License as published
Released under the GNU-AGPL v3
# by the Free Software Foundation, either version 3 of the License, or
"""
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; witout even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
managetests/branches.py
View file @
13d911c9
"""
# A program which manages Ubuntu-it's web test server
testsmanager.branches
# Copyright (C) 2015 Pietro Albini <pietroalbini@ubuntu.com>
Representation of the branches
#
# This program is free software: you can redistribute it and/or modify
Copyright (c) 2015 Pietro Albini <pietroalbini@ubuntu.com>
# it under the terms of the GNU Affero General Public License as published
Released under the GNU-AGPL v3 license
# by the Free Software Foundation, either version 3 of the License, or
"""
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; witout even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
sys
import
sys
import
subprocess
import
subprocess
...
...
managetests/gitlab.py
View file @
13d911c9
"""
# A program which manages Ubuntu-it's web test server
testsmanager.gitlab
# Copyright (C) 2015 Pietro Albini <pietroalbini@ubuntu.com>
Wrapper for the GitLab API
#
# This program is free software: you can redistribute it and/or modify
Copyright (c) 2015 Pietro Albini <pietroalbini@ubuntu.com>
# it under the terms of the GNU Affero General Public License as published
Released under the GNU-AGPL v3 license
# by the Free Software Foundation, either version 3 of the License, or
"""
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; witout even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
requests
import
requests
...
...
managetests/gunicorn_config.py
View file @
13d911c9
# A program which manages Ubuntu-it's web test server
# Copyright (C) 2015 Pietro Albini <pietroalbini@ubuntu.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; witout even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
sys
import
sys
import
os
import
os
...
...
managetests/instances.py
View file @
13d911c9
# A program which manages Ubuntu-it's web test server
# Copyright (C) 2015 Pietro Albini <pietroalbini@ubuntu.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; witout even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
subprocess
import
subprocess
import
atexit
import
atexit
import
time
import
time
...
...
managetests/webhooks.py
View file @
13d911c9
# A program which manages Ubuntu-it's web test server
# Copyright (C) 2015 Pietro Albini <pietroalbini@ubuntu.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; witout even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
queue
import
queue
import
threading
import
threading
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment