Skip to content

Commit

Permalink
fix: removed for now tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Allan-Nava authored Oct 19, 2023
1 parent 6ad6577 commit 307ee9a
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 65 deletions.
1 change: 1 addition & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. mdinclude:: ../../CHANGELOG.md
1 change: 1 addition & 0 deletions docs/source/readme.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. mdinclude:: ../../README.md
10 changes: 10 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,13 @@ freezegun = ">=1.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.black]
line-length = 99

[tool.isort]
line_length = 99
profile = "black"

[tool.darglint]
enable = "DAR104"
Empty file removed src/compress/tests/__init__.py
Empty file.
53 changes: 0 additions & 53 deletions src/compress/tests/test_connection.py

This file was deleted.

24 changes: 12 additions & 12 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,28 +10,28 @@ commands_pre =

[testenv:check]
commands =
black --check --diff src/compress tests docs
isort -c --df src/compress tests docs
flake8 src/compress tests docs
codespell src tests docs
black --check --diff src/compress docs
isort -c --df src/compress docs
flake8 src/compress docs
codespell src docs

[testenv:apply-check]
commands =
black -C src/compress tests docs
black src/compress tests docs
isort src/compress tests docs
black -C src/compress docs
black src/compress docs
isort src/compress docs

[testenv:docs]
commands_pre =
poetry install --no-root --sync -E docs
commands =
sphinx-build -T -E -W -b html -d _build/doctrees -D language=en ./docs/source _build/html

[testenv:tests]
setenv = file|tox.env
passenv = CONTAINER_HOST,compress_DOCKER_IMAGE_TAG
commands =
./test_compress_init.sh "pytest -vv --cov=compress --cov-report term-missing {posargs}"
#[testenv:tests]
#setenv = file|tox.env
#passenv = CONTAINER_HOST,compress_DOCKER_IMAGE_TAG
#commands =
# ./test_compress_init.sh "pytest -vv --cov=compress --cov-report term-missing {posargs}"

[testenv:build]
commands =
Expand Down

0 comments on commit 307ee9a

Please sign in to comment.