Skip to content

Commit

Permalink
Merge pull request #2833 from magnunor/fix_extension_test_atomap_url
Browse files Browse the repository at this point in the history
Fix url "typo" in workflow: Atomap extension testing
  • Loading branch information
ericpre committed Oct 10, 2021
2 parents 3517f8a + 0662b84 commit d8a2650
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/tests_extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
pip install https://github.com/lumispy/lumispy/archive/main.zip
pip install https://github.com/pyxem/kikuchipy/archive/develop.zip
pip install https://github.com/pyxem/pyxem/archive/master.zip
pip install https://https://gitlab.com/atomap/atomap/-/archive/master/atomap-master.zip
pip install https://gitlab.com/atomap/atomap/-/archive/master/atomap-master.zip
- name: Run Kikuchipy Test Suite
if: ${{ always() }}
Expand All @@ -78,8 +78,10 @@ jobs:
run: |
python -m pytest --pyargs pyxem
# atomap test suite doesn't run headless
#- name: Run atomap Test Suite
# if: ${{ always() }}
# run: |
# python -m pytest --pyargs atomap
# The currently released version of Atomap (0.3.1) does not work with this test
# environment. Thus, only the dev version is currently tested. If a newer version
# of Atomap is released, the "if" can be changed to always().
- name: Run atomap Test Suite
if: contains(matrix.EXTENSION_VERSION, 'dev')
run: |
python -m pytest --pyargs atomap

0 comments on commit d8a2650

Please sign in to comment.