lnbits-legend/.gitignore

58 lines
639 B
Plaintext
Raw Normal View History

.DS_Store
._*
__pycache__
*.py[cod]
*$py.class
.mypy_cache
.vscode
2021-06-18 11:06:16 +02:00
*-lock.json
*.egg
*.egg-info
.coverage
test: add unit tests for wallets (funding sources) (#2363) * test: initial commit * feat: allow external label for `create_invoice` (useful for testing) * chore: code format * fix: ignore temp coverage files * feat: add properties to the Status classes for a better readability * fix: add extra validation for data * fix: comment out bad `status.pending` (to be fixed in core) * fix: 404 tests * test: first draft of generic rest wallet tests * test: migrate two more tests * feat: add response type * feat: test exceptions * test: extract first `create_invoice` test * chore: reminder * add: error test * chore: code format * chore: experiment * feat: adapt parsing * refactor: data structure * fix: some tests * refactor: extract methods * fix: make response uniform * fix: test data * chore: clean-up * fix: uniform responses * fix: user agent * fix: user agent * fix: user-agent again * test: add `with error` test * feat: customize test name * fix: better exception handling for `status` * fix: add `try-catch` for `raise_for_status` * test: with no mocks * chore: clean-up generalized tests * chore: code format * chore: code format * chore: remove extracted tests * test: add `create_invoice`: error test * add: test for `create_invoice` with http 404 * test: extract `test_pay_invoice_ok` * test: extract `test_pay_invoice_error_response` * test: extract `test_pay_invoice_http_404` * test: add "missing data" * test: add `bad-json` * test: add `no mocks` for `create_invoice` * test: add `no mocks` for `pay_invoice` * test: add `bad json` tests * chore: re-order tests * fix: response type * test: add `missing data` test for `pay_imvoice` * chore: re-order tests * test: add `success` test for `get_invoice_status ` * feat: update test structure * test: new status * test: add more test * fix: error handling * chore: code clean-up * test: add success test for `get_payment_status ` * test: add `pending` tests for `check_payment_status` * chore: remove extracted tests * test: add more tests * test: add `no mocks` test * fix: funding source loading * refactor: extract `rest_wallet_fixtures_from_json` function * chore: update comment * feat: cover `cleanup` call also * chore: code format * refactor: start to extract data model * refactor: extract mock class * fix: typings * refactor: improve typings * chore: add some documentation * chore: final clean-up * chore: rename file * chore: `poetry add --dev pytest_httpserver` (after rebase)
2024-04-08 11:18:21 +02:00
.coverage.*
.pytest_cache
.webassets-cache
htmlcov
test-reports
tests/data/*.sqlite3
2019-12-13 23:41:39 +01:00
*.swo
*.swp
*.pyo
*.pyc
*.env
2019-12-14 10:13:27 +01:00
.env
2023-06-26 10:38:16 +02:00
.pre-commit-config.yaml
2022-12-22 14:17:42 +01:00
data
*.sqlite3
.pyre*
__bundle__
2020-05-03 18:55:17 +02:00
coverage.xml
2020-05-03 18:55:17 +02:00
node_modules
lnbits/static/bundle.js
lnbits/static/bundle-components.js
lnbits/static/bundle.css
lnbits/static/bundle.min.js.old
lnbits/static/bundle.min.css.old
docker
2022-07-08 10:20:38 +02:00
# Nix
*result*
2023-01-26 11:32:00 +01:00
# fly.io
fly.toml
lnbits-backup.zip
2023-01-31 23:14:39 +01:00
# Ignore extensions (post installable extension PR)
2024-09-11 19:34:35 +02:00
/lnbits/extensions
2024-09-11 11:41:37 +02:00
/upgrades/
# builded python package
dist