What is Travis.yml file in Codeigniter . Why we need this ?
In case i remove it from Codeigniter Package then what will happen ?
Immediate reply highly appreciated .
Thanks
Travis CI uses .travis.yml file in the root of your repository to learn about your project and how you want your builds to be executed.
Further reading
Related
I am writing an automated testing project for school using maven and I need to implement CI to our project. Since Gitlab has its own CI, I decided to use it.
The problem is that the project itself is inside of a folder in a Gitlab repository. I created a branch for that project, but the branch main body includes the project folder, so when I create a gitlab-ci.yml file, it cannot find the POM.xml file in the folder. So my question is that is there a way to make the yml file recognize the POM file by adding some sort of variable to it?
I know there are "only:" and "changes:" keywords for the yml file but that doesn't seem like it will help recognize the pom file. Also manually pushing a yml file that is inside of the project folder does not help. I haven't tried moving the POM file because the project grade is also dependent on the quality of our commits, so I would rather not commit wildly.
Using
- mvn -f project/pom.xml compile
instead of -mvn compile in the build: section of the .yml file solved it for me. I was blind and didn't see that there was a help section in the log that already answered my question.
I am configuring chrome-driver and npm install selenium-side-runner in pom.xml and running a ci/cd pipeline in gitlab.
Still I am getting "not found error"
I have shared the link with you not possible to tell you about this, because this is so hard to explain any one hence shared the blog link so you can understand it by your own way..
https://www.visiontemenos.com/blog/selenium-ide
I am doing auto deployment of Java Application using Maven and Jenkins, but it is getting failed.Here is the console output:
I have set the environment varaibles and also downloaded and configure all the required plugins. Need help to solve this issue.
Thanks
First of all: Please copy/paste messages instead of using images.
Secondly, the message said that you probably misconfigured the directory for the settings.xml. The settings.xml is usually in the directory .m2 in the user directory, but it can also be supplied from somewhere else.
Is there any way to use Magento Test Automation Framework(MTAF) with Jenkins? for jenkins automated testing.
I recently done the MTAF configuration with jenkins it works fine. simply copy and past MTAF into Jenkins workspace directory and modify the browsers.yaml file under MDAF>config>borwsers.yaml and also modify the phpunit.xml and build.xml file
This links may helps to configure:
http://jenkins-php.org/
http://mnshankar.wordpress.com/2012/03/07/jenkins-continuous-integration-zend-framework-and-netbeans/
Note: In the second link leave the Zend Framework Configuration things rest are same for configure MTAF with Jenkins .
I am trying to execute jmeter tests in jnuit testcases. I am not able to find JmeterTestCase in jmeter lib.
In which jar JmeterTestCase.class can be found?
Try this tutorial:
jmeter.apache.org/usermanual/junitsampler_tutorial.pdf
You have to create the jar yourself. If you are using Eclipse, right click on the project > Export > Java > Jar > click Next > Finish. If you use another IDE you can use their export process or follow this Java creating .jar file .
That jar needs to be placed in the lib\junit directory.
For the rest follow the tutorial given by BlackGaff. It explains everything.
please clarify what do you mean by . "I am not able to find JmeterTestCase in jmeter lib."
I guess you want to run Jmeter test cases (jmx files) as Juint test cases
you can either implement JavaSamplerClient or to extend AbstractSamplerClient.
this question might be of good help for you,
How to write a JMeter test for Java Request