diff --git a/.azure-pipelines/update-refdata.yml b/.azure-pipelines/update-refdata.yml index 7c395b214e0..d3d9353132a 100644 --- a/.azure-pipelines/update-refdata.yml +++ b/.azure-pipelines/update-refdata.yml @@ -34,22 +34,23 @@ jobs: - bash: | cd $(refdata.dir) git remote add fork https://$(bot_token)@github.com/tardis-bot/tardis-refdata - git checkout -b pr-$(pr.number) + git checkout -B pr-$(pr.number) displayName: 'Set up new branch' - - bash: | - cd $(tardis.dir) - source activate tardis - pytest tardis --tardis-refdata=$(refdata.dir) --generate-reference - displayName: 'Generate reference data on a new branch' + #- bash: | + # cd $(tardis.dir) + # source activate tardis + # pytest tardis --tardis-refdata=$(refdata.dir) --generate-reference + # displayName: 'Generate reference data on a new branch' - bash: | cd $(refdata.dir) + touch bar.txt git add -A git config --local user.email "tardis.sn.bot@gmail.com" git config --local user.name "tardis-bot" git commit -m "Automated Update (PR $(pr.number))" - git push fork pr-$(pr.number) + git push fork pr-$(pr.number) -f displayName: 'Commit new reference data' - bash: |