We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f334aa commit fc53706Copy full SHA for fc53706
geos-ats/src/geos/ats/test_steps.py
@@ -529,7 +529,10 @@ def label( self ):
529
return "pygeos"
530
531
def executable( self ):
532
- return os.path.join( config.geos_bin_dir, 'python' )
+ p = os.path.abspath(os.path.join( config.geos_bin_dir, 'python' ))
533
+ if os.path.islink(p):
534
+ p = os.readlink(p)
535
+ return p
536
537
def makeArgs( self ):
538
args = [ os.path.join( self.p.test_directory, self.p.script ) ]
0 commit comments