| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | chore: move 'gitlab/tests/' dir to 'tests/unit/' | John L. Villalovos | 2021-05-26 | 40 | -4083/+0 |
| | | | | | | Move the 'gitlab/tests/' directory to 'tests/unit/' so we have all the tests located under the 'tests/' directory. | ||||
| * | feat(objects): add support for billable members | Nejc Habjan | 2021-05-25 | 1 | -0/+58 |
| | | |||||
| * | chore: fix import ordering using isort | John L. Villalovos | 2021-05-25 | 16 | -16/+2 |
| | | | | | | | Fix the import ordering using isort. https://pycqa.github.io/isort/ | ||||
| * | fix(objects): return server data in cancel/retry methods | Nejc Habjan | 2021-05-02 | 2 | -0/+192 |
| | | |||||
| * | Merge pull request #1352 from JohnVillalovos/jlvillal/fix_mro | Nejc Habjan | 2021-04-27 | 1 | -0/+122 |
| |\ | | | | | fix: add a check to ensure the MRO is correct | ||||
| | * | chore: remove commented-out print | Nejc Habjan | 2021-04-27 | 1 | -1/+0 |
| | | | |||||
| | * | fix: add a check to ensure the MRO is correct | John L. Villalovos | 2021-04-24 | 1 | -0/+123 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a check to ensure the MRO (Method Resolution Order) is correct for classes in gitlab.v4.objects when doing type-checking. An example of an incorrect definition: class ProjectPipeline(RESTObject, RefreshMixin, ObjectDeleteMixin): ^^^^^^^^^^ This should be at the end. Correct way would be: class ProjectPipeline(RefreshMixin, ObjectDeleteMixin, RESTObject): Correctly at the end ^^^^^^^^^^ Also fix classes which have the issue. | ||||
| * | | fix(files): do not url-encode file paths twice | Nejc Habjan | 2021-04-26 | 1 | -0/+49 |
| |/ | |||||
| * | Merge pull request #1397 from JohnVillalovos/jlvillal/flake8 | Max Wittig | 2021-04-23 | 5 | -16/+12 |
| |\ | | | | | Fix all issues reported by running: tox -e pep8 and enable pep8 as a linter check | ||||
| | * | chore: fix F841 errors reported by flake8 | John L. Villalovos | 2021-04-18 | 1 | -1/+1 |
| | | | | | | | | | | | | | Local variable name is assigned to but never used https://www.flake8rules.com/rules/F841.html | ||||
| | * | chore: fix F401 errors reported by flake8 | John L. Villalovos | 2021-04-18 | 2 | -5/+1 |
| | | | | | | | | | | | | | F401: Module imported but unused https://www.flake8rules.com/rules/F401.html | ||||
| | * | chore: fix E712 errors reported by flake8 | John L. Villalovos | 2021-04-18 | 2 | -10/+10 |
| | | | | | | | | | | | | | E712: Comparison to true should be 'if cond is true:' or 'if cond:' https://www.flake8rules.com/rules/E712.html | ||||
| * | | test(objects): add tests for resource state events | Nejc Habjan | 2021-04-18 | 1 | -0/+105 |
| |/ | |||||
| * | Merge pull request #1375 from JohnVillalovos/jlvillal/update_uses_post | Nejc Habjan | 2021-04-17 | 1 | -1/+25 |
| |\ | | | | | chore: remove usage of getattr() | ||||
| | * | chore: remove usage of getattr() | John L. Villalovos | 2021-03-15 | 1 | -1/+25 |
| | | | | | | | | | | | | | | | | | | | Remove usage of getattr(self, "_update_uses_post", False) Instead add it to class and set default value to False. Add a tests that shows it is set to True for the ProjectMergeRequestApprovalManager and ProjectApprovalManager classes. | ||||
| * | | Merge pull request #1363 from python-gitlab/feat/all-audit-events | Max Wittig | 2021-03-24 | 1 | -7/+37 |
| |\ \ | |/ |/| | Feat: cover all audit events | ||||
| | * | feat(objects): add support for group audit events APIfeat/all-audit-events | Nejc Habjan | 2021-03-07 | 1 | -3/+20 |
| | | | |||||
| | * | test(objects): add unit test for instance audit events | Nejc Habjan | 2021-03-07 | 1 | -5/+18 |
| | | | |||||
| * | | chore: fix package file test naming | Nejc Habjan | 2021-03-14 | 1 | -1/+1 |
| | | | |||||
| * | | feat: add ProjectPackageFile | Jacob Henner | 2021-03-10 | 1 | -1/+69 |
| |/ | | | | | | | Add ProjectPackageFile and the ability to list project package package_files. Fixes #1372 | ||||
| * | feat(users): add follow/unfollow APIfeat/user-follow-api | Max Wittig | 2021-02-27 | 1 | -0/+80 |
| | | |||||
| * | test: don't add duplicate fixture | Max Wittig | 2021-02-24 | 1 | -26/+0 |
| | | | | Co-authored-by: Nejc Habjan <hab.nejc@gmail.com> | ||||
| * | feat(projects): add project access token api | Max Wittig | 2021-02-24 | 1 | -0/+139 |
| | | |||||
| * | feat(objects): add Release Links API support | Nejc Habjan | 2021-02-21 | 1 | -0/+131 |
| | | |||||
| * | chore(tests): remove unused URL segment | Nejc Habjan | 2021-02-20 | 1 | -2/+2 |
| | | |||||
| * | feat: add project audit endpoint | Clayton Walker | 2021-02-19 | 1 | -0/+79 |
| | | |||||
| * | feat: add personal access token APIfeat/personal-access-token-api | Max Wittig | 2021-02-17 | 1 | -0/+46 |
| | | | | | See: https://docs.gitlab.com/ee/api/personal_access_tokens.html | ||||
| * | feat(issues): add missing get verb to IssueManagerfeat/single-issue-api | Nejc Habjan | 2021-02-06 | 1 | -2/+21 |
| | | |||||
| * | feat: import from bitbucket server | Dan Fuchs | 2021-02-04 | 1 | -0/+38 |
| | | | | | | | | | | | | | | I'd like to use this libary to automate importing Bitbucket Server repositories into GitLab. There is a [GitLab API endpoint](https://docs.gitlab.com/ee/api/import.html#import-repository-from-bitbucket-server) to do this, but it is not exposed through this library. * Add an `import_bitbucket_server` method to the `ProjectManager`. This method calls this GitLab API endpoint: https://docs.gitlab.com/ee/api/import.html#import-repository-from-bitbucket-server * Modify `import_gitlab` method docstring for python3 compatibility * Add a skipped stub test for the existing `import_github` method | ||||
| * | Merge pull request #1200 from ↵ | Max Wittig | 2020-10-29 | 1 | -0/+294 |
| |\ | | | | | | | | | robinson96/feature/project_merge_request_approval_rules Feature/project merge request approval rules | ||||
| | * | test: add test_project_merge_request_approvals.py | Peter B. Robinson | 2020-10-14 | 1 | -0/+294 |
| | | | |||||
| * | | feat: unit tests added | Alex Zirka | 2020-10-08 | 1 | -0/+111 |
| |/ | |||||
| * | Merge pull request #1180 from Shkurupii/add-unittests-for-project-badges | Nejc Habjan | 2020-09-10 | 1 | -0/+210 |
| |\ | | | | | test: add unit tests for badges API | ||||
| | * | test: add unit tests for badges API | Oleksii Shkurupii | 2020-09-07 | 1 | -0/+210 |
| | | | |||||
| * | | feat(api): add support for user identity provider deletionfeat/delete-user-identities | Nejc Habjan | 2020-09-07 | 1 | -0/+17 |
| | | | |||||
| * | | test: add unit tests for resource label events API | Oleksii Shkurupii | 2020-09-04 | 1 | -0/+105 |
| |/ | |||||
| * | test(api): add tests for variables API | Nejc Habjan | 2020-08-31 | 1 | -0/+193 |
| | | |||||
| * | Merge pull request #1157 from Shkurupii/issue-1154 | Max Wittig | 2020-08-29 | 1 | -0/+73 |
| |\ | | | | | Add support to resource milestone events | ||||
| | * | chore: make latest black happy with existing code | Oleksii Shkurupii | 2020-08-29 | 2 | -4/+16 |
| | | | |||||
| | * | test: add unit tests for resource milestone events API | Oleksii Shkurupii | 2020-08-28 | 1 | -0/+73 |
| | | | | | | | | | Fixes #1154 | ||||
| * | | Merge pull request #1159 from python-gitlab/feat/project-artifacts | Max Wittig | 2020-08-29 | 1 | -0/+31 |
| |\ \ | | | | | | | Feat: Project job artifacts for latest successful pipeline | ||||
| | * | | chore: remove unnecessary import | Nejc Habjan | 2020-08-28 | 1 | -2/+0 |
| | | | | |||||
| | * | | feat(api): add endpoint for latest ref artifacts | Nejc Habjan | 2020-08-28 | 1 | -0/+33 |
| | | | | |||||
| | * | | chore: make latest black happy with existing code | Nejc Habjan | 2020-08-28 | 2 | -4/+16 |
| | |/ | |||||
| * | | test(packages): add tests for Packages API | Nejc Habjan | 2020-08-29 | 2 | -0/+124 |
| | | | |||||
| * | | chore: make latest black happy with existing code | Nejc Habjan | 2020-08-29 | 2 | -4/+16 |
| |/ | |||||
| * | refactor: rewrite unit tests for objects with responsesrefactor/split-unit-tests | Nejc Habjan | 2020-08-23 | 23 | -937/+898 |
| | | |||||
| * | refactor: split unit tests by GitLab API resources | Nejc Habjan | 2020-08-22 | 18 | -750/+1379 |
| | | |||||
| * | chore: run unittest2pytest on all unit tests | Nejc Habjan | 2020-08-22 | 4 | -60/+60 |
| | | |||||
| * | test(runners): add all runners unit testsfeat/group-runners | Max Wittig | 2020-05-16 | 1 | -0/+277 |
| | | |||||
