Skip to content

fix(docker): During cfn submit docker commands were not working on Windows #207

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 38 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
ff64181
Add mypy.ini file to ignore type errors for setuptools
Oct 26, 2022
6b497f7
empty token string triggering false positive on credential check, exp…
Oct 26, 2022
9d14798
Updated pre-commit, linting updates from pre-commit update, patch aut…
Oct 26, 2022
14ca90e
moved flake8 our of pre-commit section to its own repo in pre-commit-…
Oct 26, 2022
eba211a
removed duplicate flake8 hook
Oct 26, 2022
3612263
removed python 3.6 from github actions for pre-commit
Oct 26, 2022
c60d724
Add testing for 3.6
Oct 26, 2022
4a2f684
Go back to black 22.8.0 for python 3.6 support
Oct 26, 2022
fd03d38
typo for fail-fast in github action
Oct 26, 2022
4466264
precommit-hooks rev 4.1.0 for python 3.6 support
Oct 26, 2022
024ed9c
downgrade bandit for python 3.6
Oct 26, 2022
ff26acd
downgrade mypy to .960
Oct 26, 2022
4b43a42
downgrade mypy to .940
Oct 26, 2022
ea16384
downgrade mypy to .931
Oct 26, 2022
e056548
added dataclasses ignore to mypy.ini
Oct 26, 2022
80cbf92
downgrade mypy to .910
Oct 26, 2022
5a8877e
set GHA back to fail-fast
Oct 26, 2022
08d97f8
downgrade mypy to .812
Oct 26, 2022
1e0f18b
downgrade mypy to .900
Oct 26, 2022
7da9523
downgrade mypy to .812
Oct 26, 2022
0f3ab8e
geteuid getgid fix
Oct 28, 2022
69eaf7b
formatting for codegen.py
Oct 28, 2022
1b5c228
Updated comments around localuser
Oct 28, 2022
8fbf34c
Updated comments around localuser
Oct 28, 2022
6f5c448
Redo user configuration for docker's container run
Oct 28, 2022
65a9211
Attempt at testing localuser exception in codegen
Oct 28, 2022
e36eca0
Added tests for localuser
Oct 28, 2022
eaf5f3f
Ignore line too long in test
Oct 28, 2022
39f8d9f
ignore line too long for pylint as well
Oct 28, 2022
90be7a4
Fix python 3.6 command to update pip before installing requirements
Oct 31, 2022
183d28b
formatting update, type on function name
Oct 31, 2022
665b1b2
Added fix from issue100
Oct 31, 2022
51e89db
Added coverage missing lines option to .pre-commit-config.yaml
Nov 1, 2022
39a912c
update to check for windows before os.geteuid() call
Nov 1, 2022
3face51
Added 3.9 and 3.10 to ci/cd
Nov 1, 2022
dcf86cb
Github actions wants explicit string for long semver
Nov 1, 2022
abe3890
precommit linting
Nov 1, 2022
7ae3bb0
Merge branch 'integrated/oseuid' into fix/issue100
mmaeng Nov 1, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Go back to black 22.8.0 for python 3.6 support
  • Loading branch information
Michael Maeng committed Oct 26, 2022
commit 4a2f68467246ff24009de843898d11ef56ef4a0f
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repos:
- id: isort
# language_version: python3.6
- repo: https://github.com/psf/black
rev: 22.10.0
rev: 22.8.0
hooks:
- id: black
exclude: templates/
Expand Down