Skip to content

Commit

Permalink
Test both the Setuptools and PyInstaller tx scripts on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
akx committed Dec 11, 2015
1 parent 8f31be9 commit 2bdef8b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 2 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,11 @@ install:
- "pip install --disable-pip-version-check --user --upgrade pip"
- "pip install pyinstaller"

# Install the build dependencies of the project. If some dependencies contain
# Set up the project in develop mode. If some dependencies contain
# compiled extensions and are not provided as pre-built wheel packages,
# pip will build them from source using the MSVC compiler matching the
# target Python version and architecture
#- "%CMD_IN_ENV% pip install -r dev-requirements.txt"
- pip install -r requirements.txt
- pip install -e .

build_script:
# Build the compiled extension
Expand Down
7 changes: 7 additions & 0 deletions contrib/test_win_build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
BRANCH="win-${PYTHON//C:\\/}"

# Test the PyInstaller executable:
TX="$DIR/../dist/tx.exe"
source "$DIR/tx_commands.sh"

# Test the Setuptools script:
TX="tx"
source "$DIR/tx_commands.sh"

0 comments on commit 2bdef8b

Please sign in to comment.