mirror of
https://github.com/starship/starship.git
synced 2025-03-01 16:51:26 +01:00
- 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 😢
20 lines
607 B
YAML
20 lines
607 B
YAML
jobs:
|
|
- job: ${{ parameters.name }}
|
|
displayName: ${{ parameters.displayName }}
|
|
pool:
|
|
vmImage: ubuntu-16.04
|
|
|
|
steps:
|
|
- script: docker pull starshipcommand/starship-test
|
|
displayName: Pull docker image
|
|
|
|
- script: ./integration_test
|
|
displayName: Run integration test suite
|
|
|
|
- script: |
|
|
docker login -u $(dockerUsername) -p $(dockerPassword)
|
|
docker push starshipcommand/starship-test
|
|
# Only push new image if on master and build is passing
|
|
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
|
|
displayName: Push image to dockerhub
|