summaryrefslogtreecommitdiff
path: root/tests/functional/cli
Commit message (Collapse)AuthorAgeFilesLines
* chore: fix functional test failure if config presentjlvillal/cli_testJohn L. Villalovos2022-01-011-4/+8
| | | | | | | Fix functional test failure if config present and configured with token. Closes: #1791
* feat(cli): do not require config file to run CLIfeat/cli-without-config-fileNejc Habjan2021-12-131-0/+39
| | | | | | | | | | | BREAKING CHANGE: A config file is no longer needed to run the CLI. python-gitlab will default to https://gitlab.com with no authentication if there is no config file provided. python-gitlab will now also only look for configuration in the provided PYTHON_GITLAB_CFG path, instead of merging it with user- and system-wide config files. If the environment variable is defined and the file cannot be opened, python-gitlab will now explicitly fail.
* test(cli): improve basic CLI coveragetest/cli-coverageNejc Habjan2021-11-271-0/+49
|
* chore: rename `master` branch to `main`chore/master-to-mainNejc Habjan2021-10-112-5/+5
| | | | | BREAKING CHANGE: As of python-gitlab 3.0.0, the default branch for development has changed from `master` to `main`.
* chore: fix mypy pre-commit hookNejc Habjan2021-08-221-0/+0
|
* test(cli): replace assignment expressionBen Brown2021-06-011-5/+3
| | | | | This is a feature added in 3.8, removing it allows for the test to run with lower python versions.
* feat(objects): add support for generic packages APINejc Habjan2021-05-311-0/+48
|
* chore: rename 'tools/functional/' to 'tests/functional/'John L. Villalovos2021-05-265-0/+818
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