Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
weboob
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
184
Issues
184
List
Boards
Labels
Milestones
Merge Requests
50
Merge Requests
50
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
The new woob repository is here:
https://gitlab.com/woob/woob
. This gitlab will be removed soon.
Open sidebar
weboob
weboob
Commits
90a64e6d
Commit
90a64e6d
authored
Apr 04, 2021
by
Roger Philibert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update more git URLs
parent
e137459c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
12 deletions
+12
-12
CONTRIBUTING.md
CONTRIBUTING.md
+8
-8
README.md
README.md
+1
-1
docs/source/guides/contribute.rst
docs/source/guides/contribute.rst
+1
-1
docs/source/guides/tests.rst
docs/source/guides/tests.rst
+1
-1
weboob/core/ouiboube.py
weboob/core/ouiboube.py
+1
-1
No files found.
CONTRIBUTING.md
View file @
90a64e6d
...
...
@@ -16,7 +16,7 @@ Write a patch
Help yourself with the
[
documentation
](
http://docs.woob.tech/
)
.
Find an opened issue on
[
this website
](
https://git
.woob.tech/weboob/web
oob/issues
)
,
Find an opened issue on
[
this website
](
https://git
lab.com/woob/w
oob/issues
)
,
or write your own bugfix or feature. Then, once it is necessary, commit with:
$ git commit -a
...
...
@@ -36,14 +36,14 @@ You can run these scripts to be sure your patch doesn't break anything:
$ tools/run_tests.sh yourmodulename # or without yourmodulename to test everything
Perhaps you should also write or fix tests. These tests are automatically run by
[
Gitlab CI
](
https://git
.woob.tech/weboob/web
oob/pipelines
)
at each commit and merge requests.
[
Gitlab CI
](
https://git
lab.com/woob/w
oob/pipelines
)
at each commit and merge requests.
Create a merge request or send a patch
--------------------------------------
The easiest way to send your patch is to create a fork on
[
the W
eb
oob
Gitlab](https://git
.woob.tech
) and create a merge request from there.
The easiest way to send your patch is to create a fork on
[
the Woob
Gitlab](https://git
lab.com/woob/woob
) and create a merge request from there.
This way, the code review process is easier and continuous integration is run
automatically (see previous section).
...
...
@@ -53,7 +53,7 @@ If you prefer good old email patches, just use
Then, send them with this command:
$ git send-email --to=w
eb
oob@woob.tech *.patch
$ git send-email --to=woob@woob.tech *.patch
You can also send the files by yourself if you haven't any configured MTA on your system.
...
...
@@ -61,14 +61,14 @@ You can also send the files by yourself if you haven't any configured MTA on you
Notes on merging a merge request
--------------------------------
Few people (members of the
[
W
eb
oob group on this
repo](https://git
.woob.tech/groups/weboob
/group_members)) have the right to
Few people (members of the
[
Woob group on this
repo](https://git
lab.com/groups/woob/-
/group_members)) have the right to
merge a MR.
Anyone is welcome to review and comment pending merge requests. A merge
request should in principle have at least two reviewers before getting merged.
W
eb
oob repo should keep an history as linear as possible. Then, merging a merge
Woob repo should keep an history as linear as possible. Then, merging a merge
request should be done locally, with prior rebasing upon the
`master`
branch
and take care of using the
`-ff-only`
merge option. Merge requests should
**NOT**
be merged through the Gitlab UI, which would result in an extra "merge"
...
...
README.md
View file @
90a64e6d
...
...
@@ -40,7 +40,7 @@ Woob is written in Python and is distributed under the LGPLv3+ license.
For more information, please go to
[
the official website
](
https://woob.tech/
)
.
Some extra info is available in the
[
Gitlab
wiki](https://git
.woob.tech
/weboob/devel/wikis/home).
wiki](https://git
lab.com
/weboob/devel/wikis/home).
If you are a developper and looking for how to write a module or contribute to
Woob, you can have a look at the
[
developper documentation
](
https://dev.woob.tech/
)
.
docs/source/guides/contribute.rst
View file @
90a64e6d
...
...
@@ -36,7 +36,7 @@ Perhaps you should also write or fix tests. These tests are automatically run by
Create a merge request or send a patch
--------------------------------------
The easiest way to send your patch is to create a fork on `the woob gitlab <https://gitlab.com>`_ and create a merge
The easiest way to send your patch is to create a fork on `the woob gitlab <https://gitlab.com
/woob/woob/
>`_ and create a merge
request from there. This way, the code review process is easier and continuous integration is run automatically (see
previous section).
...
...
docs/source/guides/tests.rst
View file @
90a64e6d
...
...
@@ -21,7 +21,7 @@ Then, it run every method which name starts with ``test_``.
.. note::
Some environment variables are available, to use specific backend file or send the test results. Refer to `the
comments in the script <https://gitlab.com/w
eboob/web
oob/blob/master/tools/run_tests.sh#L4-8>`_ for more infos on this.
comments in the script <https://gitlab.com/w
oob/w
oob/blob/master/tools/run_tests.sh#L4-8>`_ for more infos on this.
If a module name is passed as argument, only this module will be tested. For example, to only run ``lutim`` tests::
...
...
weboob/core/ouiboube.py
View file @
90a64e6d
...
...
@@ -70,7 +70,7 @@ def __init__(self, modules_path=None, storage=None, scheduler=None):
if
modules_path
is
None
:
import
pkg_resources
# Package weboob_modules is provided by
# https://git
.woob.tech/web
oob/modules
# https://git
lab.com/w
oob/modules
# and should be pip-installed separately.
# Note that Weboob users should rather install Weboob modules
# through https://updates.woob.tech/.
...
...
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