getmoto / py-partiql-parser

Python Parser for PartiQL
MIT License
7 stars 3 forks source link

Source package on pypi does not contain tests/__init__.py #2

Closed centromere closed 1 year ago

centromere commented 1 year ago

The source package does not contain tests/__init__.py:

➜  Downloads tar -tf py-partiql-parser-0.3.3.tar.gz
py-partiql-parser-0.3.3/
py-partiql-parser-0.3.3/LICENSE
py-partiql-parser-0.3.3/PKG-INFO
py-partiql-parser-0.3.3/README.md
py-partiql-parser-0.3.3/py_partiql_parser/
py-partiql-parser-0.3.3/py_partiql_parser/__init__.py
py-partiql-parser-0.3.3/py_partiql_parser/_internal/
py-partiql-parser-0.3.3/py_partiql_parser/_internal/__init__.py
py-partiql-parser-0.3.3/py_partiql_parser/_internal/case_insensitive_dict.py
py-partiql-parser-0.3.3/py_partiql_parser/_internal/clause_tokenizer.py
py-partiql-parser-0.3.3/py_partiql_parser/_internal/csv_converter.py
py-partiql-parser-0.3.3/py_partiql_parser/_internal/from_parser.py
py-partiql-parser-0.3.3/py_partiql_parser/_internal/json_parser.py
py-partiql-parser-0.3.3/py_partiql_parser/_internal/parser.py
py-partiql-parser-0.3.3/py_partiql_parser/_internal/select_parser.py
py-partiql-parser-0.3.3/py_partiql_parser/_internal/utils.py
py-partiql-parser-0.3.3/py_partiql_parser/_internal/where_parser.py
py-partiql-parser-0.3.3/py_partiql_parser.egg-info/
py-partiql-parser-0.3.3/py_partiql_parser.egg-info/PKG-INFO
py-partiql-parser-0.3.3/py_partiql_parser.egg-info/SOURCES.txt
py-partiql-parser-0.3.3/py_partiql_parser.egg-info/dependency_links.txt
py-partiql-parser-0.3.3/py_partiql_parser.egg-info/requires.txt
py-partiql-parser-0.3.3/py_partiql_parser.egg-info/top_level.txt
py-partiql-parser-0.3.3/pyproject.toml
py-partiql-parser-0.3.3/setup.cfg
py-partiql-parser-0.3.3/tests/
py-partiql-parser-0.3.3/tests/test_csv_converter.py
py-partiql-parser-0.3.3/tests/test_dynamodb_examples.py
py-partiql-parser-0.3.3/tests/test_from_parser.py
py-partiql-parser-0.3.3/tests/test_json_encoder.py
py-partiql-parser-0.3.3/tests/test_json_parser.py
py-partiql-parser-0.3.3/tests/test_query_metadata.py
py-partiql-parser-0.3.3/tests/test_s3_examples.py
py-partiql-parser-0.3.3/tests/test_select_functions.py
py-partiql-parser-0.3.3/tests/test_select_parser.py
py-partiql-parser-0.3.3/tests/test_utils.py
py-partiql-parser-0.3.3/tests/test_where_parser.py
bblommers commented 1 year ago

Interesting - one would think the build-process would just gather all .py-files. This is now fixed in https://github.com/getmoto/py-partiql-parser/commit/b2e88929ff68878229f0c6981fea7ef721456d8f, and part of 0.3.4

Thanks for raising this @centromere!