Skip to content

Commit

Permalink
gtri#2: fix more scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
bollwyvl committed Feb 2, 2019
1 parent d2fbe9a commit 7dba00a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
3 changes: 0 additions & 3 deletions anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,6 @@ commands:
test:release:
unix: python -m scripts.release_check ${NEXT_RELEASE}
env_spec: test
test:lint:
unix: python -m scripts.lint
env_spec: test
release:pypi:
unix: |-
set -eux \
Expand Down
8 changes: 4 additions & 4 deletions ci/steps.common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@ parameters:
name: Linux

steps:
- script: python -m scripts.lint
- script: python -m scripts.test lint
displayName: Lint

- script: >
python -m pip install -e . --no-deps -vv
&& jupyter kernelspec install --name robotframework --sys-prefix src/irobotframework/resources
displayName: Install
- script: python -m scripts.test py
- script: python -m scripts.test unit
displayName: Unit Tests

- script: jlpm bootstrap
displayName: Build

- script: python -m scripts.test robot --browser headlessfirefox
- script: python -m scripts.test acceptance --browser headlessfirefox
displayName: Acceptance Tests (Firefox)

- script: python -m scripts.test robot --browser headlesschrome
- script: python -m scripts.test acceptance --browser headlesschrome
displayName: Acceptance Tests (Chrome)

- ${{ if eq(parameters.name, 'MacOSX') }}:
Expand Down

0 comments on commit 7dba00a

Please sign in to comment.