File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # IMPORTANT: this file is generated with the option `openapiGeneratorIgnoreList` enabled
2- # (--openapi-generator-ignore-list in CLI for example) so the entries below are pre-populated based
3- # on the input provided by the users and this file will be overwritten every time when the option is
4- # enabled (which is the exact opposite of the default behaviour to not overwrite
5- # .openapi-generator-ignore if the file exists).
6-
71# OpenAPI Generator Ignore
82# Generated by openapi-generator https://github.com/openapitools/openapi-generator
93
2721#docs/*.md
2822# Then explicitly reverse the ignore rule for a single file:
2923#!docs/README.md
30-
31- # The following entries are pre-populated based on the input obtained via
32- # the option `openapiGeneratorIgnoreList` (--openapi-generator-ignore-list in CLI for example).
33- .travis.yml
Original file line number Diff line number Diff line change 11.github/workflows/python.yml
22.gitignore
33.gitlab-ci.yml
4+ .openapi-generator-ignore
5+ .travis.yml
46README.md
57docs/AccountBalanceApi.md
68docs/BlacklistApi.md
Original file line number Diff line number Diff line change 1+ # ref: https://docs.travis-ci.com/user/languages/python
2+ language : python
3+ python :
4+ - " 3.8"
5+ - " 3.9"
6+ - " 3.10"
7+ - " 3.11"
8+ - " 3.12"
9+ # uncomment the following if needed
10+ # - "3.12-dev" # 3.12 development branch
11+ # - "nightly" # nightly build
12+ # command to install dependencies
13+ install :
14+ - " pip install -r requirements.txt"
15+ - " pip install -r test-requirements.txt"
16+ # command to run tests
17+ script : pytest --cov=messente_api
You can’t perform that action at this time.
0 commit comments