Skip to content

Commit

Permalink
Merge pull request #16238 from carlosmiei/alpaca-disableTicker
Browse files Browse the repository at this point in the history
Build:: disable Alpaca tests requires auth
  • Loading branch information
kroitor committed Dec 28, 2022
2 parents d0e23e0 + 1b4db8b commit 8763ef4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion js/pro/test/Exchange/test.watchTicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ module.exports = async (exchange, symbol) => {
'cex',
'ripio',
'mexc',
'woo'
'woo',
'alpaca', // requires auth
]

if (skippedExchanges.includes (exchange.id)) {
Expand Down
1 change: 1 addition & 0 deletions keys.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"alpaca": { "skipWs": true },
"aax": { "skip": true, "skipWs": true },
"binance": { "skipWs": true, "httpProxy": "http://51.83.140.52:11230" },
"binanceusdm": { "skipWs": true, "httpProxy": "http://51.83.140.52:11230" },
Expand Down
3 changes: 2 additions & 1 deletion php/pro/test/Exchange/test_watch_ticker.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ function test_watch_ticker($exchange, $symbol) {
'cex',
'ripio',
'mexc',
'woo'
'woo',
'alpaca'
);

if (in_array($exchange->id, $skipped_exchanges)) {
Expand Down
3 changes: 2 additions & 1 deletion python/ccxt/pro/test/exchange/test_watch_ticker.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ async def test_watch_ticker(exchange, symbol):
'cex',
'ripio',
'mexc',
'woo'
'woo',
'alpaca',
]
if exchange.id in skipped_exchanges:
print(exchange.id, method, 'test skipped')
Expand Down

0 comments on commit 8763ef4

Please sign in to comment.