Browse Source

fix cmd syntax

Steven Silvester 7 years ago
parent
commit
a760911812
1 changed files with 3 additions and 3 deletions
  1. 3 3
      appveyor.yml

+ 3 - 3
appveyor.yml

@@ -48,14 +48,14 @@ build: off
 test_script:
   - cmd: |
       jlpm
-      If ($PYTHON_VERSION -eq 36) {
+      If "%PYTHON_VERSION%" == "36" ( 
         py.test
         python -m jupyterlab.selenium_check
         python -m jupyterlab.selenium_check --dev-mode
-      } Else {
+      ) Else (
         jlpm run integrity
         jlpm run build
         jlpm run build:test
         (jlpm test) -OR (jlpm test) -OR (jlpm test)
         jupyter lab build
-      }
+      )