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 2642742 commit f431c72Copy full SHA for f431c72
geos_ats_package/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