Explorar o código

fix: remove unused tox.ini

trgiangdo hai 1 ano
pai
achega
4bcf158cbd
Modificáronse 5 ficheiros con 0 adicións e 92 borrados
  1. 0 1
      Pipfile
  2. 0 1
      pyproject.toml
  3. 0 6
      taipy/gui/README.md
  4. 0 3
      taipy/rest/README.md
  5. 0 81
      tox.ini

+ 0 - 1
Pipfile

@@ -61,7 +61,6 @@ pytest-playwright = "*"
 pytest-timeout = "*"
 python-dotenv = "*"
 testbook = "*"
-tox = "*"
 twine = "*"
 types-flask = "*"
 types-Flask-Cors = "*"

+ 0 - 1
pyproject.toml

@@ -7,7 +7,6 @@ exclude = [
     "dist",
     "releases",
     ".venv",
-    ".tox",
     ".mypy_cache",
     ".pytest_cache",
     ".vscode",

+ 0 - 6
taipy/gui/README.md

@@ -52,11 +52,5 @@ Want to be part of the *Taipy GUI* community? Check out our [`CODE_OF_CONDUCT.md
 - `CONTRIBUTING.md`: Instructions to contribute to `taipy-gui`;
 - `INSTALLATION.md`: Instructions to build and install `taipy-gui`;
 - `LICENSE`: The Apache 2.0 License;
-- `MANIFEST.in`: Build configuration file;
-- `mypy.ini`: [mypy](http://mypy-lang.org/) linter configuration file;
-- `Pipfile`: File used by the Pipenv virtual environment to manage project dependencies;
-- `pyproject.toml`: Python build configuration file use for linters here;
-- `pytest.ini`: [pytest](https://pytest.org/) configuration file;
 - `README.md`: Current file;
 - `setup.py`: The setup script managing building, distributing, and installing `taipy-gui`;
-- `tox.ini`: Contains test scenarios to be run.

+ 0 - 3
taipy/rest/README.md

@@ -78,10 +78,7 @@ Want to be part of the _Taipy REST_ community? Check out our
     - `CONTRIBUTING.md`: Instructions to contribute to _taipy-rest_.
     - `INSTALLATION.md`: Instructions to install _taipy-rest_.
     - `LICENSE`: The Apache 2.0 License.
-    - `Pipfile`: File used by the Pipenv virtual environment to manage project dependencies.
     - `README.md`: Current file.
-    - `contributors.txt`: The list of contributors
     - `setup.py`: The setup script managing building, distributing, and installing _taipy-rest_.
-    - `tox.ini`: Contains test scenarios to be run.
 - `tests/`:
   - `rest/`: Unit tests following the `taipy/rest/` structure.

+ 0 - 81
tox.ini

@@ -1,81 +0,0 @@
-[tox]
-skipsdist = true
-isolated_build = true
-envlist = clean, lint, linux, windows, macos, report, without-pyodbc
-
-[pytest]
-filterwarnings =
-    ignore::DeprecationWarning
-
-[testenv]
-allowlist_externals = pytest
-deps =
-    pipenv==2023.7.23
-    mypy
-
-[testenv:lint]
-platform = linux
-allowlist_externals =
-    isort
-    black
-    flake8
-deps =
-    isort
-    black
-    flake8
-commands =
-    isort taipy --check
-    black taipy tests --check
-    flake8 taipy tests
-
-[testenv:linux]
-platform = linux
-commands =
-    pipenv install --dev
-    pipenv run python tools/frontend/bundle_build.py
-    pipenv run ipython kernel install --name "python3" --user
-    pipenv run playwright install chromium --with-deps
-    pipenv run mypy --config-file mypy.ini taipy
-    pipenv run pytest -s --cov=taipy --cov-append --cov-report=xml --cov-report term-missing tests
-
-[testenv:windows]
-platform = win32
-commands =
-    pipenv install --dev
-    pipenv run python tools/frontend/bundle_build.py
-    pipenv run ipython kernel install --name "python3" --user
-    pipenv run playwright install chromium --with-deps
-    pipenv run pytest -s tests
-
-[testenv:macos]
-platform = darwin
-commands =
-    pipenv install --dev
-    pipenv run python tools/frontend/bundle_build.py
-    pipenv run ipython kernel install --name "python3" --user
-    pipenv run playwright install chromium --with-deps
-    pipenv run pytest -s tests
-
-[testenv:report]
-depends = linux
-platform = linux
-deps = coverage
-skip_install = true
-commands =
-    coverage report
-    coverage html
-
-[testenv:clean]
-platform = linux
-deps = coverage
-skip_install = true
-commands = coverage erase
-
-[testenv:tests]
-commands =
-    pipenv install --dev
-    pipenv run python tools/frontend/bundle_build.py
-    pipenv run ipython kernel install --name "python3" --user
-    pipenv run playwright install chromium --with-deps
-    pipenv run pip freeze
-    pipenv run pytest -s tests