Skip to content

Commit

Permalink
add python-sys target to travis and allow failures
Browse files Browse the repository at this point in the history
  • Loading branch information
Simn committed Apr 26, 2014
1 parent 6cc75dc commit cc9679b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,14 @@ env:
- TARGET=openfl-samples
- TARGET=flixel-demos
- TARGET=neko-sys
- TARGET=python-sys
- TARGET=bytecode

matrix:
fast_finish: true
allow_failures:
- env: TARGET=flash8
- env: TARGET=python-sys

before_install:
- travis_retry sudo apt-get update
Expand Down
6 changes: 6 additions & 0 deletions tests/RunTravis.hx
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,12 @@ class RunTravis {
runCommand("haxe", ["compile-neko.hxml"]);
Sys.setCwd("bin/neko");
runCommand("neko", ["sys.n", "foo", "12", "a b c\\"]);
case "python-sys":
getPythonDependencies();
Sys.setCwd("../sys");
runCommand("haxe", ["compile-python.hxml"]);
Sys.setCwd("bin/python");
runCommand("python3", ["sys.py", "foo", "12", "a b c\\"]);
case "openfl-samples":
getOpenFLDependencies(unitDir);

Expand Down

0 comments on commit cc9679b

Please sign in to comment.