run_autopep8.ps1 819 B

1234567891011121314151617181920
  1. $ExitCode = 0
  2. $GitDiff = git diff --name-only origin/master
  3. $GitDiffPep = Write-Output $GitDiff | Select-String -Pattern ".*\.py" | Select-String -NotMatch ".*/project_template/.*"
  4. # If there is no diff between master, then run everything.
  5. if ( $GitDiffPep -eq $null ) {
  6. autopep8 -r --diff coderedcms/
  7. if ($LastExitCode -ne 0) { $ExitCode = $LastExitCode }
  8. }
  9. # Else run just the diff.
  10. else {
  11. autopep8 -r --diff $GitDiffPep
  12. if ($LastExitCode -ne 0) { $ExitCode = $LastExitCode }
  13. # If the project_template changed, then run the testproject too.
  14. $GitDiffTempl = Write-Output $GitDiff | Select-String -Pattern ".*/project_template/.*"
  15. if ( $GitDiffTempl -ne $null ) {
  16. #autopep8 -r --diff testproject/
  17. if ($LastExitCode -ne 0) { $ExitCode = $LastExitCode }
  18. }
  19. }
  20. exit $ExitCode