我正在尝试开发单元测试,以及一个Jenkins文件来测试项目的分支。
我的项目只有主分支,我已经有了我的pytest和我的tox.ini,它们运行良好。
在浏览网络之后,我在使用jenkinsfile时遇到了很多麻烦。
感谢阅读并帮助我:)
Jenkinsfile:
<LinearLayout
android:layout_width="match_parent"
android:background="@color/orange"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".SilowniaTrainingActivity">
<TextView
android:layout_margin="10dp"
android:gravity="center"
android:id="@+id/training_name"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<android.support.v4.view.ViewPager
android:id="@+id/view_pager"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
这是我收到的错误消息:
pipeline {
agent any
stages{
stage('Build') {
steps {
sh 'echo "Hello World"'
sh 'python --version'
}
}
stage('Test') {
steps {
sh 'tox';
}
}
}
}