Codeception / robo-paracept

Robo tasks for Codeception tests parallel execution
MIT License
57 stars 59 forks source link

Does not work when codeception is already installed #39

Closed graciousgrey closed 3 years ago

graciousgrey commented 6 years ago

As written in this documentation http://codeception.com/docs/12-ParallelExecution robo-paracebt does not work when codeception is already installed.

Will this issue be solved ?

What is the recommended way to handle this when codeception is already installed? I tried: Removing codeception from the composer.json and run composer update --> Add robo-paracebt to composer.json --> composer update --> add codeception to composer.json --> run composer update.

I still get the error "Neither composer nor phar installation of Codeception found" when I try to execute a robo task. What could be the problem?

DavertMik commented 6 years ago

Maybe you could add

require 'vendor/autoload.php';

to RoboFile

mariusz-kraj commented 6 years ago

@DavertMik after adding this, we are unable to use robo when vendors are empty and need to use composer install manually.

graciousgrey commented 6 years ago

Withrequire vendor/autoload.php I still got the error. Setting the path argument to the taskCodeception function taskCodecept('bin/codecept') solved the issue for me.

vansari commented 3 years ago

Closing... > 3 years old