summaryrefslogtreecommitdiff
path: root/tests/functional/api/test_repository.py
Commit message (Collapse)AuthorAgeFilesLines
* feat: add support for merge_base APINejc Habjan2022-08-191-0/+10
|
* fix: add `get_all` param (and `--get-all`) to allow passing `all` to APINejc Habjan2022-07-211-0/+20
|
* test(functional): replace len() calls with list membership checksNejc Habjan2022-07-031-5/+3
|
* feat(api): support head() method for get and list endpointsNejc Habjan2022-06-251-0/+3
|
* fix: remove custom URL encodingJohn L. Villalovos2022-01-081-2/+6
| | | | | | | | | | We were using `str.replace()` calls to take care of URL encoding issues. Switch them to use our `utils._url_encode()` function which itself uses `urllib.parse.quote()` Closes: #1356
* chore: skip a functional test if not using >= py3.9jlvillal/repository_func_testsJohn L. Villalovos2021-12-261-0/+4
| | | | | One of the tests requires Python 3.9 or higher to run. Mark the test to be skipped if running Python less than 3.9.
* feat(api): support file format for repository archiveMax Ludwig2021-12-211-2/+25
|
* refactor: use f-strings for string formattingNejc Habjan2021-11-051-3/+1
|
* chore: rename `master` branch to `main`chore/master-to-mainNejc Habjan2021-10-111-11/+11
| | | | | BREAKING CHANGE: As of python-gitlab 3.0.0, the default branch for development has changed from `master` to `main`.
* chore: rename 'tools/functional/' to 'tests/functional/'John L. Villalovos2021-05-261-0/+126
Rename the 'tools/functional/' directory to 'tests/functional/' This makes more sense as these are functional tests and not tools. This was dicussed in: https://github.com/python-gitlab/python-gitlab/discussions/1468