stuartherbert / sublime-phpunit

PHPUnit Support for Sublime Text 2
https://github.com/stuartherbert/sublime-phpunit
Other
103 stars 20 forks source link

Configfile not detected... #58

Closed iaejean closed 4 years ago

iaejean commented 9 years ago

I was working good, but after several updates, when I run tests over my phpunit.xml file, this isn't detected and isn't taken as argument to phpunit, to get works on sublime text 2 I modified some lines on this way:

        #if os.path.isfile(os.path.join(folder, configfile)): //211 line
        args.append("-c")
        args.append('"' + folder + configfile + '"')

I would like to know a suggestion, because on sublime text 3 I can't do it; and I would appreciate know the cause to don't have to modify the files, if someone have some idea thanks a lot.

PD. Sorry my bad English.