Skip to content

Commit

Permalink
minor edit to run-tests for python ccxt#445
Browse files Browse the repository at this point in the history
  • Loading branch information
kroitor committed Nov 1, 2017
1 parent a617039 commit ad93b96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
A tests launcher. Runs tests for all languages and all exchanges, in
parallel, with a humanized error reporting.
Usage: node run-tests [--php] [--js] [--python] [--python3] [exchange] [symbol]
Usage: node run-tests [--php] [--js] [--python] [--python2] [--python3] [exchange] [symbol]
--------------------------------------------------------------------------- */

Expand Down Expand Up @@ -134,7 +134,7 @@ const testExchange = async (exchange) => {

{ language: 'JavaScript', key: '--js', exec: ['node', 'js/test/test.js', ...args] },
{ language: 'Python', key: '--python', exec: ['python', 'python/test/test.py', ...args] },
{ language: 'Python', key: '--python2', exec: ['python2', 'python/test/test.py', ...args] },
{ language: 'Python 2', key: '--python2', exec: ['python2', 'python/test/test.py', ...args] },
{ language: 'Python 3', key: '--python3', exec: ['python3', 'python/test/test_async.py', ...args] },
{ language: 'PHP', key: '--php', exec: ['php', '-f', 'php/test/test.php', ...args] }
]
Expand Down

0 comments on commit ad93b96

Please sign in to comment.