Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Commit 96fb8dc

Browse files
committed
Fixing PEP
1 parent b57dfa4 commit 96fb8dc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

buildscripts/azure/template-linux-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ jobs:
4848
source $HOME/miniconda3/bin/activate
4949
python buildscripts/test_conda_install.py --python=$PYTHON_VER --channels="-c anaconda -c conda-forge"
5050
displayName: 'Test SDC installation from conda'
51-
continueOnError: ${{ parameters.allowFailure }}
51+
continueOnError: ${{ parameters.allowFailure }}

buildscripts/azure/template-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ jobs:
4141
call C:\\Miniconda\\Scripts\activate.bat
4242
python buildscripts\\run_examples.py --python=%PYTHON_VER% --channels="-c anaconda -c conda-forge"
4343
displayName: 'Test SDC installation from conda'
44-
continueOnError: ${{ parameters.allowFailure }}
44+
continueOnError: ${{ parameters.allowFailure }}

buildscripts/test_conda_install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
def check_sdc_installed(sdc_utils, sdc_package):
3939
cmd_output = sdc_utils.get_command_output('conda list sdc')
40-
pattern = sdc_package.replace('=', '\s+')
40+
pattern = sdc_package.replace('=', r'\s+')
4141
return re.match(pattern, cmd_output)
4242

4343

0 commit comments

Comments
 (0)