summaryrefslogtreecommitdiff
path: root/gitlab/tests/test_gitlab_http_methods.py
Commit message (Collapse)AuthorAgeFilesLines
* chore: move 'gitlab/tests/' dir to 'tests/unit/'John L. Villalovos2021-05-261-234/+0
| | | | | Move the 'gitlab/tests/' directory to 'tests/unit/' so we have all the tests located under the 'tests/' directory.
* chore: fix import ordering using isortJohn L. Villalovos2021-05-251-2/+1
| | | | | | Fix the import ordering using isort. https://pycqa.github.io/isort/
* chore: fix F401 errors reported by flake8John L. Villalovos2021-04-181-1/+1
| | | | | | F401: Module imported but unused https://www.flake8rules.com/rules/F401.html
* chore: fix E712 errors reported by flake8John L. Villalovos2021-04-181-1/+1
| | | | | | E712: Comparison to true should be 'if cond is true:' or 'if cond:' https://www.flake8rules.com/rules/E712.html
* refactor: move Gitlab and GitlabList to gitlab/client.pyJohn L. Villalovos2021-02-181-0/+1
| | | | | | | | Move the classes Gitlab and GitlabList from gitlab/__init__.py to the newly created gitlab/client.py file. Update one test case that was depending on requests being defined in gitlab/__init__.py
* refactor: split unit tests by GitLab API resourcesNejc Habjan2020-08-221-0/+234