Pipfile で定義されたスクリプトを実行するにはどうすればよいですか?
hereの構文に従って、pipfile のスクリプト セクションを次のように定義しました。
[scripts]
tests = "bash ./run-tests.sh"
を実行した後、スクリプト$ pipenv install
を呼び出すにはどうすればよいですか?tests
私は成功せずに次のことを試しました:
$ tests
$ pipenv tests
$ pipenv run tests
$ pipenv shell
(virtual env) $ tests