aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/my_repos.py
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-07-31 10:16:38 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-07-31 10:17:44 +0300
commit9181b3a021acc7585cb6f9f20da6accfce0015e0 (patch)
tree0fcb4d5a99be02ac7a934817491f50d0d32d757d /examples/my_repos.py
parentadd some unit tests (diff)
downloadcgitize-9181b3a021acc7585cb6f9f20da6accfce0015e0.tar.gz
cgitize-9181b3a021acc7585cb6f9f20da6accfce0015e0.zip
merge my_repos.py to the config
The config is also in the TOML format now. It's a bit messy for the moment, but I'll fix it.
Diffstat (limited to '')
-rw-r--r--examples/my_repos.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/examples/my_repos.py b/examples/my_repos.py
deleted file mode 100644
index 1e83334..0000000
--- a/examples/my_repos.py
+++ /dev/null
@@ -1,12 +0,0 @@
-from cgitize.repo import Bitbucket, GitHub, Repo
-
-
-MY_REPOS = (
- GitHub('xyz'),
- GitHub('foo/bar', user='test', via_ssh=False),
-
- Bitbucket('xyz'),
- Bitbucket('foo/bar', desc='Foo (Bar)'),
-
- Repo('tmp/tmp', clone_url='https://example.com/tmp.git', owner='John Doe'),
-)