@@ -10,32 +10,32 @@ default_to_workspace = false
1010[tasks .poetry-export-dev ]
1111script_runner = " @shell"
1212script = '''
13- conda run -n console_pp poetry export --dev -f $REQUIREMENTS_FILE --output $REQUIREMENTS_DEV_FILE --without-hashes
13+ conda run -n $CONDA_ENV poetry export --dev -f $REQUIREMENTS_FILE --output $REQUIREMENTS_DEV_FILE --without-hashes
1414'''
1515
1616[tasks .poetry-export ]
1717dependencies = [" poetry-export-dev" ]
1818script_runner = " @shell"
1919script = '''
20- conda run -n console_pp poetry export -f $REQUIREMENTS_FILE --output $REQUIREMENTS_FILE --without-hashes
20+ conda run -n $CONDA_ENV poetry export -f $REQUIREMENTS_FILE --output $REQUIREMENTS_FILE --without-hashes
2121'''
2222
2323[tasks .pip-install-dev ]
2424script_runner = " @shell"
2525script = '''
26- conda run -n console_pp pip install -r $REQUIREMENTS_DEV_FILE
26+ conda run -n $CONDA_ENV pip install -r $REQUIREMENTS_DEV_FILE
2727'''
2828
2929[tasks .pip-install ]
3030script_runner = " @shell"
3131script = '''
32- conda run -n console_pp pip install -r $REQUIREMENTS_FILE
32+ conda run -n $CONDA_ENV pip install -r $REQUIREMENTS_FILE
3333'''
3434
3535[tasks .generate-resources ]
3636script_runner = " @shell"
3737script = '''
38- conda run -n $CONDA_ENV pyside2-rcc resources/console_resources.qrc -o src/main/python/console_resources.py
38+ conda run -n $CONDA_ENV --no-capture-output --live-stream pyside2-rcc resources/console_resources.qrc -o src/main/python/console_resources.py
3939'''
4040
4141[tasks .copy-capnp ]
@@ -62,14 +62,14 @@ Get-ChildItem .\console_backend -Recurse -Include @("*.egg-info", "*.dist-info")
6262dependencies = [" copy-capnp" , " generate-resources" , " remove-egg-dist" , " install-backend" ]
6363script_runner = " @shell"
6464script = '''
65- conda run -n $CONDA_ENV fbs run
65+ conda run -n $CONDA_ENV --no-capture-output --live-stream fbs run
6666'''
6767
6868[tasks .prod-run ]
6969dependencies = [" copy-capnp" , " generate-resources" , " remove-egg-dist" , " prod-install-backend" ]
7070script_runner = " @shell"
7171script = '''
72- conda run -n $CONDA_ENV fbs run
72+ conda run -n $CONDA_ENV --no-capture-output --live-stream fbs run
7373'''
7474
7575[tasks .setuptools-rust ]
@@ -87,7 +87,7 @@ conda run -n $CONDA_ENV pip install -e ./console_backend
8787[tasks .prod-install-backend ]
8888script_runner = " @shell"
8989script = '''
90- conda run -n $CONDA_ENV python -m pip install -t ./console_backend --upgrade --force ./console_backend -v
90+ conda run -n $CONDA_ENV --no-capture-output --live-stream python -m pip install ./console_backend --upgrade --force ./console_backend -v
9191'''
9292
9393[tasks .prod-freeze-no-copy ]
0 commit comments