Fix "pipenv install" invocation to avoid update of Pipfile.lock (#561)

This commit is contained in:
Pierre-Loup 2021-11-01 14:43:11 +01:00 committed by GitHub
parent 9590b81af2
commit 56832b65c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -23,7 +23,7 @@ tooling_tests_task:
PYTHONPATH: .
install_dependencies_script:
- cd rspec-tools
- pipenv install -e .
- pipenv install
- pipenv run pip install pytest
tests_script:
- cd rspec-tools

View File

@ -35,7 +35,7 @@ jobs:
- name: 'Install rspec-tools'
working-directory: 'rspec/rspec-tools'
run: pipenv install -e .
run: pipenv install
- name: 'Add Language'
working-directory: 'rspec/rspec-tools'

View File

@ -32,7 +32,7 @@ jobs:
- name: 'Install rspec-tools'
working-directory: 'rspec/rspec-tools'
run: pipenv install -e .
run: pipenv install
- name: 'Create Rule'
working-directory: 'rspec/rspec-tools'

View File

@ -12,7 +12,7 @@ ls -al $CACHE_PATH
#validate links in asciidoc
cd rspec-tools
pipenv install -e .
pipenv install
pipenv run rspec-tools check-links --d ../out
cd ..