Skip to content

Commit

Permalink
Azure pipeline: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-douglass committed Mar 27, 2020
1 parent 6389055 commit b75bae5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pipelines/azure-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ stages:
python setup.py sdist
- publish: $(System.DefaultWorkingDirectory)/dist/
artifact: dist
- publish: $(System.DefaultWorkingDirectory)/pipeline/
artifact: pipeline
- publish: $(System.DefaultWorkingDirectory)/pipelines/
artifact: pipelines
- stage: test
jobs:
- job: run_test
Expand All @@ -58,15 +58,15 @@ stages:
- download: current
artifact: dist
- download: current
artifact: pipeline
artifact: pipelines
- script: |
sudo apt-get update
sudo apt-get install -y build-essential libffi-dev libfuzzy-dev python3-dev
export VERSION=${BUILD_SOURCEBRANCH#/refs/tags/v}
sudo env "PATH=$PATH" python -m pip install --no-cache-dir -f dist "assemblyline==${VERSION}"
mkdir -p /etc/assemblyline/
mkdir -p /var/cache/assemblyline/
cp pipeline/config.yml /etc/assemblyline
cp pipelines/config.yml /etc/assemblyline
sudo env "PATH=$PATH" python -m pip install --no-cache-dir -r test/requirements.txt
displayName: Install package
- script: pytest -rsx -vv
Expand Down

0 comments on commit b75bae5

Please sign in to comment.