├── .codecov.yml ├── .github └── workflows │ ├── bugwarrior.yml │ └── check.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGELOG.rst ├── CONTRIBUTING.md ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── RELEASING.md ├── bugwarrior ├── README.rst ├── __init__.py ├── collect.py ├── command.py ├── config │ ├── __init__.py │ ├── data.py │ ├── ini2toml_plugin.py │ ├── load.py │ ├── schema.py │ └── secrets.py ├── db.py ├── docs │ ├── Makefile │ ├── _ext │ │ ├── config.py │ │ └── udas.py │ ├── automatic_updates.rst │ ├── common_configuration.rst │ ├── conf.py │ ├── contributing.rst │ ├── faq.rst │ ├── generate_service_template.py │ ├── getting.rst │ ├── index.rst │ ├── make.bat │ ├── manpage.rst │ ├── other-services │ │ ├── api.rst │ │ ├── third_party.rst │ │ └── tutorial.rst │ ├── other_services.rst │ ├── service_template.html │ ├── services.rst │ ├── services │ │ ├── azuredevops.rst │ │ ├── bitbucket.rst │ │ ├── bts.rst │ │ ├── bugzilla.rst │ │ ├── deck.rst │ │ ├── gerrit.rst │ │ ├── gitbug.rst │ │ ├── github.rst │ │ ├── gitlab.rst │ │ ├── gmail.rst │ │ ├── jira.rst │ │ ├── kanboard.rst │ │ ├── linear.rst │ │ ├── logseq.rst │ │ ├── pagure.rst │ │ ├── phabricator.rst │ │ ├── pictures │ │ │ ├── logseq_token.png │ │ │ ├── trello_token.png │ │ │ └── trello_url.png │ │ ├── pivotaltracker.rst │ │ ├── redmine.rst │ │ ├── taiga.rst │ │ ├── teamwork_projects.rst │ │ ├── todoist.rst │ │ ├── trac.rst │ │ ├── trello.rst │ │ └── youtrack.rst │ └── using.rst ├── notifications.py └── services │ ├── __init__.py │ ├── azuredevops.py │ ├── bitbucket.py │ ├── bts.py │ ├── bz.py │ ├── deck.py │ ├── gerrit.py │ ├── gitbug.py │ ├── github.py │ ├── gitlab.py │ ├── gmail.py │ ├── jira.py │ ├── kanboard.py │ ├── linear.py │ ├── logseq.py │ ├── pagure.py │ ├── phab.py │ ├── pivotaltracker.py │ ├── redmine.py │ ├── taiga.py │ ├── teamwork_projects.py │ ├── todoist.py │ ├── trac.py │ ├── trello.py │ └── youtrack.py ├── pyproject.toml └── tests ├── __init__.py ├── base.py ├── config ├── __init__.py ├── example-bugwarrior.toml ├── example-bugwarriorrc ├── test_data.py ├── test_load.py ├── test_schema.py └── test_secrets.py ├── test_azuredevops.py ├── test_bitbucket.py ├── test_bts.py ├── test_bugzilla.py ├── test_command.py ├── test_db.py ├── test_deck.py ├── test_docs.py ├── test_general.py ├── test_gerrit.py ├── test_gitbug.py ├── test_github.py ├── test_gitlab.py ├── test_gmail.py ├── test_jira.py ├── test_kanboard.py ├── test_linear.py ├── test_logseq.py ├── test_phab.py ├── test_pivotaltracker.py ├── test_redmine.py ├── test_service.py ├── test_taiga.py ├── test_teamwork_projects.py ├── test_templates.py ├── test_todoist.py ├── test_trac.py ├── test_trello.py └── test_youtrak.py /.codecov.yml: -------------------------------------------------------------------------------- 1 | comment: false 2 | -------------------------------------------------------------------------------- /.github/workflows/bugwarrior.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/.github/workflows/bugwarrior.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | ci: {} 2 | repos: [] 3 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | bugwarrior/README.rst -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/RELEASING.md -------------------------------------------------------------------------------- /bugwarrior/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/README.rst -------------------------------------------------------------------------------- /bugwarrior/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/__init__.py -------------------------------------------------------------------------------- /bugwarrior/collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/collect.py -------------------------------------------------------------------------------- /bugwarrior/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/command.py -------------------------------------------------------------------------------- /bugwarrior/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/config/__init__.py -------------------------------------------------------------------------------- /bugwarrior/config/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/config/data.py -------------------------------------------------------------------------------- /bugwarrior/config/ini2toml_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/config/ini2toml_plugin.py -------------------------------------------------------------------------------- /bugwarrior/config/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/config/load.py -------------------------------------------------------------------------------- /bugwarrior/config/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/config/schema.py -------------------------------------------------------------------------------- /bugwarrior/config/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/config/secrets.py -------------------------------------------------------------------------------- /bugwarrior/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/db.py -------------------------------------------------------------------------------- /bugwarrior/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/Makefile -------------------------------------------------------------------------------- /bugwarrior/docs/_ext/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/_ext/config.py -------------------------------------------------------------------------------- /bugwarrior/docs/_ext/udas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/_ext/udas.py -------------------------------------------------------------------------------- /bugwarrior/docs/automatic_updates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/automatic_updates.rst -------------------------------------------------------------------------------- /bugwarrior/docs/common_configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/common_configuration.rst -------------------------------------------------------------------------------- /bugwarrior/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/conf.py -------------------------------------------------------------------------------- /bugwarrior/docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/contributing.rst -------------------------------------------------------------------------------- /bugwarrior/docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/faq.rst -------------------------------------------------------------------------------- /bugwarrior/docs/generate_service_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/generate_service_template.py -------------------------------------------------------------------------------- /bugwarrior/docs/getting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/getting.rst -------------------------------------------------------------------------------- /bugwarrior/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/index.rst -------------------------------------------------------------------------------- /bugwarrior/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/make.bat -------------------------------------------------------------------------------- /bugwarrior/docs/manpage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/manpage.rst -------------------------------------------------------------------------------- /bugwarrior/docs/other-services/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/other-services/api.rst -------------------------------------------------------------------------------- /bugwarrior/docs/other-services/third_party.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/other-services/third_party.rst -------------------------------------------------------------------------------- /bugwarrior/docs/other-services/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/other-services/tutorial.rst -------------------------------------------------------------------------------- /bugwarrior/docs/other_services.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/other_services.rst -------------------------------------------------------------------------------- /bugwarrior/docs/service_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/service_template.html -------------------------------------------------------------------------------- /bugwarrior/docs/services.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/azuredevops.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/azuredevops.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/bitbucket.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/bitbucket.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/bts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/bts.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/bugzilla.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/bugzilla.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/deck.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/deck.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/gerrit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/gerrit.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/gitbug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/gitbug.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/github.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/github.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/gitlab.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/gitlab.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/gmail.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/gmail.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/jira.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/jira.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/kanboard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/kanboard.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/linear.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/linear.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/logseq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/logseq.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/pagure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/pagure.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/phabricator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/phabricator.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/pictures/logseq_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/pictures/logseq_token.png -------------------------------------------------------------------------------- /bugwarrior/docs/services/pictures/trello_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/pictures/trello_token.png -------------------------------------------------------------------------------- /bugwarrior/docs/services/pictures/trello_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/pictures/trello_url.png -------------------------------------------------------------------------------- /bugwarrior/docs/services/pivotaltracker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/pivotaltracker.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/redmine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/redmine.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/taiga.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/taiga.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/teamwork_projects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/teamwork_projects.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/todoist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/todoist.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/trac.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/trac.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/trello.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/trello.rst -------------------------------------------------------------------------------- /bugwarrior/docs/services/youtrack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/services/youtrack.rst -------------------------------------------------------------------------------- /bugwarrior/docs/using.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/docs/using.rst -------------------------------------------------------------------------------- /bugwarrior/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/notifications.py -------------------------------------------------------------------------------- /bugwarrior/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/__init__.py -------------------------------------------------------------------------------- /bugwarrior/services/azuredevops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/azuredevops.py -------------------------------------------------------------------------------- /bugwarrior/services/bitbucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/bitbucket.py -------------------------------------------------------------------------------- /bugwarrior/services/bts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/bts.py -------------------------------------------------------------------------------- /bugwarrior/services/bz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/bz.py -------------------------------------------------------------------------------- /bugwarrior/services/deck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/deck.py -------------------------------------------------------------------------------- /bugwarrior/services/gerrit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/gerrit.py -------------------------------------------------------------------------------- /bugwarrior/services/gitbug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/gitbug.py -------------------------------------------------------------------------------- /bugwarrior/services/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/github.py -------------------------------------------------------------------------------- /bugwarrior/services/gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/gitlab.py -------------------------------------------------------------------------------- /bugwarrior/services/gmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/gmail.py -------------------------------------------------------------------------------- /bugwarrior/services/jira.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/jira.py -------------------------------------------------------------------------------- /bugwarrior/services/kanboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/kanboard.py -------------------------------------------------------------------------------- /bugwarrior/services/linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/linear.py -------------------------------------------------------------------------------- /bugwarrior/services/logseq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/logseq.py -------------------------------------------------------------------------------- /bugwarrior/services/pagure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/pagure.py -------------------------------------------------------------------------------- /bugwarrior/services/phab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/phab.py -------------------------------------------------------------------------------- /bugwarrior/services/pivotaltracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/pivotaltracker.py -------------------------------------------------------------------------------- /bugwarrior/services/redmine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/redmine.py -------------------------------------------------------------------------------- /bugwarrior/services/taiga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/taiga.py -------------------------------------------------------------------------------- /bugwarrior/services/teamwork_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/teamwork_projects.py -------------------------------------------------------------------------------- /bugwarrior/services/todoist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/todoist.py -------------------------------------------------------------------------------- /bugwarrior/services/trac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/trac.py -------------------------------------------------------------------------------- /bugwarrior/services/trello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/trello.py -------------------------------------------------------------------------------- /bugwarrior/services/youtrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/bugwarrior/services/youtrack.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/base.py -------------------------------------------------------------------------------- /tests/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/config/example-bugwarrior.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/config/example-bugwarrior.toml -------------------------------------------------------------------------------- /tests/config/example-bugwarriorrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/config/example-bugwarriorrc -------------------------------------------------------------------------------- /tests/config/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/config/test_data.py -------------------------------------------------------------------------------- /tests/config/test_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/config/test_load.py -------------------------------------------------------------------------------- /tests/config/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/config/test_schema.py -------------------------------------------------------------------------------- /tests/config/test_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/config/test_secrets.py -------------------------------------------------------------------------------- /tests/test_azuredevops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_azuredevops.py -------------------------------------------------------------------------------- /tests/test_bitbucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_bitbucket.py -------------------------------------------------------------------------------- /tests/test_bts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_bts.py -------------------------------------------------------------------------------- /tests/test_bugzilla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_bugzilla.py -------------------------------------------------------------------------------- /tests/test_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_command.py -------------------------------------------------------------------------------- /tests/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_db.py -------------------------------------------------------------------------------- /tests/test_deck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_deck.py -------------------------------------------------------------------------------- /tests/test_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_docs.py -------------------------------------------------------------------------------- /tests/test_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_general.py -------------------------------------------------------------------------------- /tests/test_gerrit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_gerrit.py -------------------------------------------------------------------------------- /tests/test_gitbug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_gitbug.py -------------------------------------------------------------------------------- /tests/test_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_github.py -------------------------------------------------------------------------------- /tests/test_gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_gitlab.py -------------------------------------------------------------------------------- /tests/test_gmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_gmail.py -------------------------------------------------------------------------------- /tests/test_jira.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_jira.py -------------------------------------------------------------------------------- /tests/test_kanboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_kanboard.py -------------------------------------------------------------------------------- /tests/test_linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_linear.py -------------------------------------------------------------------------------- /tests/test_logseq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_logseq.py -------------------------------------------------------------------------------- /tests/test_phab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_phab.py -------------------------------------------------------------------------------- /tests/test_pivotaltracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_pivotaltracker.py -------------------------------------------------------------------------------- /tests/test_redmine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_redmine.py -------------------------------------------------------------------------------- /tests/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_service.py -------------------------------------------------------------------------------- /tests/test_taiga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_taiga.py -------------------------------------------------------------------------------- /tests/test_teamwork_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_teamwork_projects.py -------------------------------------------------------------------------------- /tests/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_templates.py -------------------------------------------------------------------------------- /tests/test_todoist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_todoist.py -------------------------------------------------------------------------------- /tests/test_trac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_trac.py -------------------------------------------------------------------------------- /tests/test_trello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_trello.py -------------------------------------------------------------------------------- /tests/test_youtrak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothenburgBitFactory/bugwarrior/HEAD/tests/test_youtrak.py --------------------------------------------------------------------------------