diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000..39466b34 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,31 @@ +# Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: +- master + +pool: + vmImage: ubuntu-latest + +steps: +- task: UsePythonVersion@0 + inputs: + versionSpec: '3.x' + addToPath: true + displayName: 'Use Python 3.x' + +- script: python -m pip install --upgrade pip + displayName: 'Upgrade pip' + +- script: pip install -r requirements.txt + displayName: 'Install dependencies' + +- script: pytest + displayName: 'Run Tests' + +- task: PublishTestResults@2 + inputs: + testResultsFiles: '**Test-*.xml' + testRunTitle: 'Python Test Results' \ No newline at end of file diff --git a/python-pipelines.yml b/python-pipelines.yml new file mode 100644 index 00000000..27a798ad --- /dev/null +++ b/python-pipelines.yml @@ -0,0 +1,19 @@ +# Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: +- master + +pool: + vmImage: ubuntu-latest + +steps: +- script: echo Hello, world! + displayName: 'Run a one-line script' + +- script: | + echo Add other tasks to build, test, and deploy your project. + echo See https://aka.ms/yaml + displayName: 'Run a multi-line script' diff --git a/sample.html b/sample.html new file mode 100644 index 00000000..6a4ff221 --- /dev/null +++ b/sample.html @@ -0,0 +1 @@ +

Test