getmoto / py-partiql-parser

Python Parser for PartiQL

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

centromere opened this issue · comments

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

Interesting - one would think the build-process would just gather all .py-files.
This is now fixed in b2e8892, and part of 0.3.4

Thanks for raising this @centromere!