Skip to content

Commit 64ea866

Browse files
fix mv file not overwriting
1 parent 5848eff commit 64ea866

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/_test-integrations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
run: |
102102
pip install toml
103103
python scripts/generate_lite_toml.py
104-
cp pyproject-lite.toml pyproject.toml
104+
mv -f pyproject-lite.toml pyproject.toml
105105
pip install -e '.[test]'
106106
- name: Run Integration Testing
107107
env:

.github/workflows/_test-units.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
run: |
8787
pip install toml
8888
python scripts/generate_lite_toml.py
89-
mv pyproject-lite.toml pyproject.toml
89+
mv -f pyproject-lite.toml pyproject.toml
9090
pip install -e '.[test]'
9191
9292
- name: Unit testing with pytest

0 commit comments

Comments
 (0)