There is IDE support for vscode and VIM. The docs are quite good.
This repository is xc compliant. The following tasks are available:
Try with no arg. Then try with arg
inputs: AN_ARG
echo $AN_ARGShows that you can't override MYVAR
environment: MYVAR=Default
echo $MYVARCan't run until the directory exists!
directory: ./build
echo $PWDTry with no args. Then try with just one arg.
inputs: VAR1, VAR2 environment: VAR2=default_var2
echo $VAR1 $VAR2See that both run!
requires: demo_env
echo requirements met!Lets see if python works
#!/usr/local/bin/python3
print("I'm a real python!")Install our poetry project
poetry install --with devFormat our poetry project
isort .
black .Lint and test
mypy .
flake8 .
pytest