summaryrefslogtreecommitdiffstats
path: root/tests/testsuite/python.rs
AgeCommit message (Collapse)Author
2019-09-27style: Fix rustfmt formatting warnings in CI (#432)Zhenhui Xie
2019-09-15Enable the python module for tox files (#369)Thomas O'Donnell
Enable the python module if the current directory contains a `tox.ini` file.
2019-09-04ci: Migrate CI from Azure Pipelines to GitHub Actions (#233)Matan Kushner
Migrated CI from Azure Pipelines to GitHub Actions. Until the release process is figured out in Actions, we'll stick to using Azure pipelines for releases.
2019-08-21Add support for detecting Python from Pipenv files (#221)Thomas O'Donnell
Added the ability to enable the Python module based on the existence of the a `Pipfile`.
2019-08-12feat: Implement configuration to display pyenv version name (#140)MaT1g3R
This behavior can be enabled via setting `use_pyenv` to true. The "pyenv" prefix before the version name can be configured using `pyenv_prefix`.
2019-08-11feat: Implement Python virtual environment display (#137)MaT1g3R
2019-07-19ci: Use Python v3.6.9 in CI (#101)Matan Kushner
2019-06-06Refactor integration tests (#71)Matan Kushner
- Create subcommands to be able to print modules independently - `starship prompt` will print the full prompt - `starship module <MODULE_NAME>` will print a specific module e.g. `starship module python` - Added `--path` flag to print the prompt or modules without being in a specific directory - Added `--status` flag to provide the status of the last command, instead of requiring it as an argument - Refactored integration tests to be end-to-end tests, since there was no way in integration tests to set the environment variables for a specific command, which was required for the `username` module - Moved e2e tests to `tests/testsuite` to allow for a single binary to be built - Tests will build/run faster - No more false positives for unused functions - Added tests for `username` - Removed codecov + tarpaulin 😢