Skip to content

Commit

Permalink
Fix errors in script paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Limych committed Oct 1, 2023
1 parent 1de62ad commit 6a74e2b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/py-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
if: matrix.python-version != '3.11'
run: |
pytest --basetemp=$RUNNER_TEMP --durations=10 -n auto --dist=loadfile -qq -o console_output_style=count -p no:sugar
./bin/check_dirty
./scripts/check_dirty
- name: "Install Coveralls"
if: matrix.python-version == '3.11'
Expand All @@ -119,7 +119,7 @@ jobs:
if: matrix.python-version == '3.11'
run: |
pytest --basetemp=$RUNNER_TEMP --durations=10 -n auto --dist=loadfile -qq -o console_output_style=count -p no:sugar --cov --cov-report=
./bin/check_dirty
./scripts/check_dirty
- name: "Send coverage to Coveralls"
if: matrix.python-version == '3.11'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,4 @@ jobs:
- name: "Update release notes"
if: env.release_version != '' && success()
run: python3 ./bin/gen_releasenotes --token ${{ secrets.GITHUB_TOKEN }} --repo ${{ github.repository }} --release ${{ env.release_version }}
run: python3 ./scripts/gen_releasenotes --token ${{ secrets.GITHUB_TOKEN }} --repo ${{ github.repository }} --release ${{ env.release_version }}
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Contributing to this project should be as easy and transparent as possible, whet

## IMPORTANT! Install development environment first

When making changes in code, please use the existing development environment — this will save you from many errors and help create more convenient code to support. To install the environment, run the `./bin/setup` script.
When making changes in code, please use the existing development environment — this will save you from many errors and help create more convenient code to support. To install the environment, run the `./scripts/setup` script.

## Github is used for everything

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ File | Purpose | Documentation
git push -u origin dev

# Initialize the development environment
./bin/setup
./scripts/setup
```

* …or create a new repository on the command line:
Expand All @@ -67,7 +67,7 @@ File | Purpose | Documentation
git push -u origin dev
# Initialize the development environment
./bin/setup
./scripts/setup
```

* …or apply blueprint to an existing repository from the command line:
Expand All @@ -81,12 +81,12 @@ File | Purpose | Documentation
git push -u origin dev
# Initialize the development environment
./bin/setup
./scripts/setup
```

After these steps, your repository will developing on a own branch. But in parallel there will be this blueprint repository, new changes in which you can always apply with a couple of simple commands:
```bash
./bin/update
./scripts/update
git merge blueprint/dev
```

Expand Down
2 changes: 1 addition & 1 deletion tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ While tests aren't required to publish a custom component for Home Assistant, th

To begin, it is recommended to create a virtual environment and install all necessary dependencies:
```bash
./bin/setup
./scripts/setup
```

# Useful commands
Expand Down

0 comments on commit 6a74e2b

Please sign in to comment.