Przeglądaj źródła

Update release test

dinhlongnguyen 1 rok temu
rodzic
commit
204d4a7ec7
1 zmienionych plików z 3 dodań i 7 usunięć
  1. 3 7
      .github/workflows/release-dev.yml

+ 3 - 7
.github/workflows/release-dev.yml

@@ -116,15 +116,11 @@ jobs:
           # Install package
           echo "Installing package..."
           pip install ./dist/taipy-${{ steps.current-version.outputs.VERSION }}.tar.gz
-          rm -r src
-
-          # Install test packages
-          echo "Installing test packages..."
-          pip install pytest
 
           # Run tests
-          echo "running pytest"
-          pytest -s
+          python -c "import taipy as tp; tp.Scenario"
+          python -c "import taipy as tp; tp.gui"
+          python -c "import taipy as tp; tp.rest"
 
       - name: Create/update release and tag
         run: |