Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Fix nodeos tests to work on arch linux
Browse files Browse the repository at this point in the history
  • Loading branch information
sim31 committed Apr 12, 2018
1 parent 33c584e commit 57a238b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/testUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1769,7 +1769,8 @@ def discoverLocalNodes(self, totalNodes, timeout=0):
nodes=[]

pgrepOpts="-fl"
if platform.linux_distribution()[0] == "Ubuntu" or platform.linux_distribution()[0] == "LinuxMint" or platform.linux_distribution()[0] == "Fedora":
if platform.linux_distribution()[0] == "Ubuntu" or platform.linux_distribution()[0] == "LinuxMint" or platform.linux_distribution()[0] == "Fedora" or\
platform.linux_distribution()[0] == "arch":
pgrepOpts="-a"

endTime=time.time()+timeout
Expand Down

0 comments on commit 57a238b

Please sign in to comment.