Skip to content

Commit

Permalink
Migrate Makefile to tox 4
Browse files Browse the repository at this point in the history
* Add tox >= 4.0 as a dev dependency
* Add tox configuration to setup.cfg
  - I chose setup.cfg because pyproject.toml support in tox is awkward (tox-dev/tox#999)
* Modify Makefile to use tox instead of running the commands directly
* Update .gitignore for relevant new files and directories
* Update requirements files
  - Newer tarball in freeze-requirements.sh because the older one was sometimes breaking in tox.

A future commit will configure tox in Github actions.
  • Loading branch information
lengau committed Dec 14, 2022
1 parent 31a3990 commit d2ecb42
Show file tree
Hide file tree
Showing 8 changed files with 244 additions and 93 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -1,6 +1,7 @@
build
Cargo.lock
.coverage**
coverage-*
demos/*/parts/
demos/*/prime/
demos/**/*.snap
Expand All @@ -21,6 +22,7 @@ pip-wheel-metadata/
prime
*.pyc
__pycache__
.pytest_cache
*.snap
snap/.snapcraft/
.spread-reuse.*
Expand All @@ -29,6 +31,8 @@ stage
target
tests/unit/snap/
tests/unit/stage/
test-results*
.tox
.vscode
venv
.venv
27 changes: 12 additions & 15 deletions Makefile
Expand Up @@ -3,58 +3,55 @@ SOURCES_LEGACY=snapcraft_legacy tests/legacy

.PHONY: autoformat-black
autoformat-black:
black $(SOURCES) $(SOURCES_LEGACY)
tox run -e format

.PHONY: freeze-requirements
freeze-requirements:
tools/freeze-requirements.sh

.PHONY: test-black
test-black:
black --check --diff $(SOURCES) $(SOURCES_LEGACY)
tox run -e black

.PHONY: test-codespell
test-codespell:
codespell --quiet-level 4 --ignore-words-list crate,keyserver,comandos,ro --skip '*.tar,*.xz,*.zip,*.bz2,*.7z,*.gz,*.deb,*.rpm,*.snap,*.gpg,*.pyc,*.png,*.ico,*.jar,*.so,changelog,.git,.hg,.mypy_cache,.tox,.venv,venv,_build,buck-out,__pycache__,build,dist,.vscode,parts,stage,prime,test_appstream.py,./snapcraft.spec,./.direnv,./.pytest_cache'
tox run -e codespell

.PHONY: test-flake8
test-flake8:
python3 -m flake8 $(SOURCES) $(SOURCES_LEGACY)
tox run -e flake

.PHONY: test-isort
test-isort:
isort --check $(SOURCES) $(SOURCES_LEGACY)
tox run -e isort

.PHONY: test-mypy
test-mypy:
mypy $(SOURCES)
tox run -e mypy

.PHONY: test-pydocstyle
test-pydocstyle:
pydocstyle snapcraft
tox run -e docstyle

.PHONY: test-pylint
test-pylint:
pylint snapcraft
pylint tests/*.py tests/unit --disable=invalid-name,missing-module-docstring,missing-function-docstring,duplicate-code,protected-access,unspecified-encoding,too-many-public-methods,too-many-arguments,too-many-lines
tox run -e pylint

.PHONY: test-pyright
test-pyright:
pyright $(SOURCES)
tox run -e pyright

.PHONY: test-shellcheck
test-shellcheck:
# Skip third-party gradlew script.
find . \( -name .git -o -name gradlew \) -prune -o -print0 | xargs -0 file -N | grep shell.script | cut -f1 -d: | xargs shellcheck
./tools/spread-shellcheck.py spread.yaml tests/spread/
tox run -e spellcheck

.PHONY: test-legacy-units
test-legacy-units:
pytest --cov-report=xml --cov=snapcraft tests/legacy/unit
tox run -e py38-dev-legacy

.PHONY: test-units
test-units: test-legacy-units
pytest --cov-report=xml --cov=snapcraft tests/unit
tox run -e py38-dev-unit

.PHONY: tests
tests: tests-static test-units
Expand Down
20 changes: 20 additions & 0 deletions pyproject.toml
Expand Up @@ -20,6 +20,9 @@ exclude = '''
| ^/prime
)/
'''
# Targeting future versions as well so we don't have black reformatting code
# en masse later.
target_version = ["py38", "py310", "py311"]

[tool.isort]
# black-compatible isort configuration
Expand Down Expand Up @@ -51,3 +54,20 @@ load-plugins = "pylint_fixme_info,pylint_pytest"

[tool.pylint.SIMILARITIES]
min-similarity-lines=10

[tool.mypy]
python_version = 3.8
ignore_missing_imports = true
follow_imports = "silent"
exclude = [
"build",
"snapcraft_legacy",
"tests/spread",
"tests/legacy",
"tools",
]

[tool.pyright]
include = ["snapcraft", "tests"]
exclude = ["tests/legacy", "tests/spread", "build"]
pythonVersion = "3.8"
102 changes: 54 additions & 48 deletions requirements-devel.txt
@@ -1,124 +1,130 @@
astroid==2.12.11
astroid==2.12.13
attrs==22.1.0
black==22.10.0
catkin-pkg==0.5.2
certifi==2022.9.24
black==22.12.0
cachetools==5.2.0
certifi==2022.12.7
cffi==1.15.1
chardet==5.0.0
chardet==5.1.0
charset-normalizer==2.1.1
click==8.1.3
codespell==2.2.1
codespell==2.2.2
colorama==0.4.6
coverage==6.5.0
craft-cli==1.2.0
craft-grammar==1.1.1
craft-parts==1.17.1
craft-providers==1.6.1
craft-providers==1.6.2
craft-store==2.3.0
cryptography==3.4
Deprecated==1.2.13
dill==0.3.5.1
dill==0.3.6
distlib==0.3.6
distro==1.8.0
docutils==0.19
exceptiongroup==1.0.4
extras==1.0.0
filelock==3.8.2
fixtures==4.0.1
flake8==5.0.4
flake8==6.0.0
gnupg==2.3.1
httplib2==0.20.4
httplib2==0.21.0
hupper==1.10.3
idna==3.4
importlib-metadata==5.1.0
iniconfig==1.1.1
isort==5.10.1
isort==5.11.2
jaraco.classes==3.2.3
jeepney==0.8.0
jsonschema==2.5.1
keyring==23.9.3
launchpadlib==1.10.16
lazr.restfulclient==0.14.4
keyring==23.11.0
launchpadlib==1.10.18
lazr.restfulclient==0.14.5
lazr.uri==1.0.6
lazy-object-proxy==1.7.1
lxml==4.9.1
lazy-object-proxy==1.8.0
lxml==4.9.2
macaroonbakery==1.3.1
mccabe==0.7.0
more-itertools==8.14.0
mypy==0.982
more-itertools==9.0.0
mypy==0.991
mypy-extensions==0.4.3
oauthlib==3.2.1
overrides==7.0.0
packaging==21.3
PasteDeploy==2.1.1
pathspec==0.10.1
pbr==5.10.0
oauthlib==3.2.2
overrides==7.3.1
packaging==22.0
PasteDeploy==3.0.1
pathspec==0.10.3
pbr==5.11.0
pexpect==4.8.0
plaster==1.0
plaster-pastedeploy==0.7
platformdirs==2.5.2
plaster==1.1.2
plaster-pastedeploy==1.0.1
platformdirs==2.6.0
pluggy==1.0.0
progressbar==2.5
protobuf==3.20.3
psutil==5.9.2
psutil==5.9.4
ptyprocess==0.7.0
py==1.11.0
pycodestyle==2.9.1
pycodestyle==2.10.0
pycparser==2.21
pydantic==1.9.0
pydantic-yaml==0.8.1
pydocstyle==6.1.1
pyelftools==0.29
pyflakes==2.5.0
pyflakes==3.0.1
pyftpdlib==1.5.7
pylint==2.15.4
pylint==2.15.8
pylint-fixme-info==1.0.3
pylint-pytest==1.1.2
pylxd==2.3.1
pymacaroons==0.13.0
pyparsing==3.0.9
pyproject_api==1.2.1
pyramid==2.0
pyRFC3339==1.1
pytest==7.1.3
pytest==7.2.0
pytest-cov==4.0.0
pytest-mock==3.10.0
pytest-subprocess==1.4.2
python-dateutil==2.8.2
python-debian==0.1.47
pytz==2022.4
pytz==2022.6
pyxdg==0.28
PyYAML==6.0
raven==6.10.0
requests==2.28.1
requests-toolbelt==0.10.0
requests-toolbelt==0.10.1
requests-unixsocket==0.3.0
SecretStorage==3.3.3
semantic-version==2.10.0
semver==2.13.0
simplejson==3.17.6
simplejson==3.18.0
six==1.16.0
snap-helpers==0.2.0
snap-helpers==0.3.1
snowballstemmer==2.2.0
tabulate==0.9.0
testscenarios==0.5.0
testtools==2.5.0
tinydb==4.7.0
toml==0.10.2
tomli==2.0.1
tomlkit==0.11.5
tomlkit==0.11.6
tox==4.0.9
translationstring==1.4
types-Deprecated==1.2.9
types-PyYAML==6.0.12
types-requests==2.28.11.2
types-setuptools==65.4.0.0
types-PyYAML==6.0.12.2
types-requests==2.28.11.5
types-setuptools==65.6.0.2
types-tabulate==0.9.0.0
types-urllib3==1.26.25
types-urllib3==1.26.25.4
typing_extensions==4.4.0
urllib3==1.26.12
urllib3==1.26.13
venusian==3.0.0
virtualenv==20.17.1
wadllib==1.3.6
WebOb==1.8.7
wrapt==1.14.1
ws4py==0.5.1
zipp==3.11.0
zope.deprecation==4.4.0
zope.interface==5.5.0
python-apt @ https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/python-apt/2.0.0ubuntu0.20.04.6/python-apt_2.0.0ubuntu0.20.04.6.tar.xz; sys.platform == "linux"
zope.interface==5.5.2
python-apt @ https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/python-apt/2.0.0ubuntu0.20.04.8/python-apt_2.0.0ubuntu0.20.04.8.tar.xz; sys.platform == "linux"
PyNaCl==1.4.0; sys.platform != "linux"
PyNaCl @ https://files.pythonhosted.org/packages/61/ab/2ac6dea8489fa713e2b4c6c5b549cc962dd4a842b5998d9e80cf8440b7cd/PyNaCl-1.3.0.tar.gz; sys.platform == "linux"
setuptools==49.6.0
pyinstaller==4.10; sys.platform == "win32"
pyinstaller==4.3; sys.platform == "win32"
44 changes: 21 additions & 23 deletions requirements.txt
@@ -1,40 +1,38 @@
attrs==22.1.0
catkin-pkg==0.5.2
certifi==2022.9.24
certifi==2022.12.7
cffi==1.15.1
chardet==5.0.0
charset-normalizer==2.1.1
click==8.1.3
craft-cli==1.2.0
craft-grammar==1.1.1
craft-parts==1.17.1
craft-providers==1.6.1
craft-providers==1.6.2
craft-store==2.3.0
cryptography==3.4
Deprecated==1.2.13
distro==1.8.0
docutils==0.19
gnupg==2.3.1
httplib2==0.20.4
httplib2==0.21.0
idna==3.4
importlib-metadata==5.1.0
jaraco.classes==3.2.3
jeepney==0.8.0
jsonschema==2.5.1
keyring==23.9.3
launchpadlib==1.10.16
lazr.restfulclient==0.14.4
keyring==23.11.0
launchpadlib==1.10.18
lazr.restfulclient==0.14.5
lazr.uri==1.0.6
lxml==4.9.1
lxml==4.9.2
macaroonbakery==1.3.1
more-itertools==8.14.0
more-itertools==9.0.0
mypy-extensions==0.4.3
oauthlib==3.2.1
overrides==7.0.0
packaging==21.3
platformdirs==2.5.2
oauthlib==3.2.2
overrides==7.3.1
packaging==22.0
platformdirs==2.6.0
progressbar==2.5
protobuf==3.20.3
psutil==5.9.2
psutil==5.9.4
pycparser==2.21
pydantic==1.9.0
pydantic-yaml==0.8.1
Expand All @@ -44,30 +42,30 @@ pymacaroons==0.13.0
pyparsing==3.0.9
pyRFC3339==1.1
python-dateutil==2.8.2
python-debian==0.1.47
pytz==2022.4
pytz==2022.6
pyxdg==0.28
PyYAML==6.0
raven==6.10.0
requests==2.28.1
requests-toolbelt==0.10.0
requests-toolbelt==0.10.1
requests-unixsocket==0.3.0
SecretStorage==3.3.3
semantic-version==2.10.0
semver==2.13.0
simplejson==3.17.6
simplejson==3.18.0
six==1.16.0
snap-helpers==0.2.0
snap-helpers==0.3.1
tabulate==0.9.0
tinydb==4.7.0
toml==0.10.2
types-Deprecated==1.2.9
typing_extensions==4.4.0
urllib3==1.26.12
urllib3==1.26.13
wadllib==1.3.6
wrapt==1.14.1
ws4py==0.5.1
python-apt @ https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/python-apt/2.0.0ubuntu0.20.04.6/python-apt_2.0.0ubuntu0.20.04.6.tar.xz; sys.platform == "linux"
zipp==3.11.0
python-apt @ https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/python-apt/2.0.0ubuntu0.20.04.8/python-apt_2.0.0ubuntu0.20.04.8.tar.xz; sys.platform == "linux"
PyNaCl==1.4.0; sys.platform != "linux"
PyNaCl @ https://files.pythonhosted.org/packages/61/ab/2ac6dea8489fa713e2b4c6c5b549cc962dd4a842b5998d9e80cf8440b7cd/PyNaCl-1.3.0.tar.gz; sys.platform == "linux"
setuptools==49.6.0

0 comments on commit d2ecb42

Please sign in to comment.