diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e18ae773..32bd0fca 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -33,6 +33,5 @@ jobs: uses: wearerequired/lint-action@v2.3.0 with: flake8: true - mypy: true continue_on_error: false # Enable your linters here diff --git a/README.rst b/README.rst index a2f0ffea..7ec24479 100644 --- a/README.rst +++ b/README.rst @@ -406,7 +406,9 @@ Running MongoDB tests against a live MongoDB instance **Note to developers:** By default, all MongoDB tests are run against a mocked MongoDB instance, provided by the ``pymongo_inmemory`` package. To run them against a live MongoDB instance, the ``CACHIER_TEST_VS_LIVE_MONGO`` environment variable is set to ``True`` in the ``test`` environment of this repository (and additional environment variables are populated with the appropriate credentials), used by the GitHub Action running tests on every commit and pull request. -Contributers are not expected to run these tests against a live MongoDB instance when developing, as credentials for the testing instance used will NOT be shared, but rather use the testing against the in-memory MongoDB instance as a good proxy. HOWEVER, the tests run against a live MongoDB instance when you submit a PR are the determining tests for deciding whether your code functions correctly against MongoDB. +Contributers are not expected to run these tests against a live MongoDB instance when developing, as credentials for the testing instance used will NOT be shared, but rather use the testing against the in-memory MongoDB instance as a good proxy. + +**HOWEVER, the tests run against a live MongoDB instance when you submit a PR are the determining tests for deciding whether your code functions correctly against MongoDB.** Adding documentation @@ -423,7 +425,7 @@ Additionally, if you update this ``README.rst`` file, use ``python setup.py chec Credits ======= -Created by `Shay Palachy Affek `_ (shay.palachy@gmail.com). +Created by `Shay Palachy Affek `_ (shay.palachy@gmail.com), which currently assists in maintenance. Current lead developer/contributor: `Judson Neer `_ (`@lordjabez `_ on GitHub). @@ -437,7 +439,7 @@ Other major contributors: * `non-senses `_ - The ``wait_for_calc_timeout`` kwarg. -* `Elad Rapapor `_ - Multi-file Pickle core, a.k.a ``separate_files`` (released on ``v1.5.3``). +* `Elad Rapaport `_ - Multi-file Pickle core, a.k.a ``separate_files`` (released on ``v1.5.3``). * `John Didion `_ - Support for pickle-based caching for cases where two identically-named methods of different classes are defined in the same module. diff --git a/mypy.ini b/mypy.ini deleted file mode 100644 index ae3b2c53..00000000 --- a/mypy.ini +++ /dev/null @@ -1,58 +0,0 @@ -[mypy] -show_column_numbers=true -show_error_codes=true -strict_equality=true -warn_unused_ignores=true -warn_redundant_casts=true -warn_unreachable=true -warn_return_any=false -exclude= - .git - .venv - .vscode - .pytest_cache - .mypy_cache - .tox - .eggs - build - dist - docs - examples - setup.py - setup.cfg - pyproject.toml - README.md - LICENSE - AUTHORS - CONTRIBUTING.md - CHANGELOG.md - .coveragerc - .flake8 - .pre-commit-config.yaml - .pylintrc - .travis.yml - .codecov.yml - .gitignore - .gitattributes - .bumpversion.cfg - .readthedocs.yml - .isort.cfg - .editorconfig - .github - .azure-pipelines - .dockerignore - .docker - .github - .gitlab-ci.yml - .gitlab - .hgignore - .hgtags - .hg - .hgrc - .idea - .mypy_cache - .pylintrc - versioneer.py - -[mypy-pymongo_inmemory.*] -ignore_missing_imports = True