pipeline {
    agent {
        node {
            label 'Linux-ubuntu11'
        }
    }
    stages {
        stage('build') {
            steps {
                sh 'python --version'
                sh 'pip install -r requirements.txt'
                sh 'python -m pytest -pyargs mcutk'
            }
        }
    }
}