-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #243 from tomhea/feature/update-top-level-files
Feature/update top level files
- Loading branch information
Showing
6 changed files
with
20 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
|
||
# Show statistics for FlipJump files (as Text files, until FlipJump is Supported). | ||
*.fj linguist-language=Text | ||
# Show statistics for FlipJump files (as Text files, until FlipJump is Supported in linguist/lib/linguist/languages.yml). | ||
*.fj linguist-language=Text linguist-detectable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
#!/bin/bash | ||
# This script executes the flipjump tests in parallel; first compiles the program, and then runs them. | ||
# - Each phase is parallelized with the optimal number of threads. | ||
# - Each phase is called with the given command-line arguments/flags. | ||
|
||
pytest --compile -n auto "$@" | ||
pytest --run -n auto "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
:: This script executes the flipjump tests in parallel; first compiles the program, and then runs them. | ||
:: - Each phase is parallelized with the optimal number of threads. | ||
:: - Each phase is called with the given command-line arguments/flags. | ||
|
||
pytest --compile -n auto %* | ||
pytest --run -n auto %* |