-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Support nested ifs in default template (#436) * Support include and ifs in default template includes (#406) * Support environment variables in ifs in default template (#488) * Support != in default template (#358, #477)
- Loading branch information
Showing
63 changed files
with
2,285 additions
and
2,302 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[flake8] | ||
max-line-length = 120 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
[tool.pytest.ini_options] | ||
cache_dir = "/tmp" | ||
addopts = "-ra" | ||
markers = [ | ||
"deprecated", # marks tests for deprecated features (deselect with '-m "not deprecated"') | ||
] | ||
|
||
[tool.pylint.design] | ||
max-args = 14 | ||
max-locals = 28 | ||
max-attributes = 8 | ||
max-statements = 65 | ||
|
||
[tool.pylint.format] | ||
max-line-length = 120 | ||
|
||
[tool.pylint."messages control"] | ||
disable = [ | ||
"redefined-outer-name", | ||
] | ||
|
||
[tool.pylint.similarities] | ||
ignore-imports = "yes" | ||
min-similarity-lines = 8 | ||
|
||
[tool.black] | ||
line-length = 120 | ||
|
||
[tool.isort] | ||
line_length = 120 | ||
profile = "black" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
FROM ubuntu:18.04 | ||
FROM ubuntu:23.04 | ||
MAINTAINER Tim Byrne <[email protected]> | ||
|
||
# Shellcheck and esh versions | ||
ARG SC_VER=0.8.0 | ||
ARG ESH_VER=0.3.1 | ||
ARG SC_VER=0.9.0 | ||
ARG ESH_VER=0.3.2 | ||
|
||
# Install prerequisites and configure UTF-8 locale | ||
RUN \ | ||
|
@@ -41,8 +41,8 @@ RUN cd /opt \ | |
|
||
# Upgrade pip3 and install requirements | ||
COPY test/requirements.txt /tmp/requirements.txt | ||
RUN python3 -m pip install --upgrade pip setuptools \ | ||
&& python3 -m pip install --upgrade -r /tmp/requirements.txt \ | ||
RUN python3 -m pip install --break-system-packages --upgrade pip setuptools \ | ||
&& python3 -m pip install --break-system-packages --upgrade -r /tmp/requirements.txt \ | ||
&& rm -f /tmp/requirements | ||
|
||
# Install esh | ||
|
Oops, something went wrong.