Browse Source

can we use exports here?

Getty Ritter 4 years ago
parent
commit
de0d23cc2e
1 changed files with 4 additions and 0 deletions
  1. 4 0
      .drone.yml

+ 4 - 0
.drone.yml

@@ -10,20 +10,24 @@ steps:
   commands:
   - pip install poetry --user
   - pip install invoke --user
+  - export PATH=/root/.local/bin:PATH
   - poetry config virtualenvs.in-project true --local
   - poetry install
 
 - name: test
   image: python
   commands:
+  - export PATH=/root/.local/bin:PATH
   - inv test
 
 - name: typecheck
   image: python
   commands:
+  - export PATH=/root/.local/bin:PATH
   - poetry run inv tc
 
 - name: format
   image: python
   commands:
+  - export PATH=/root/.local/bin:PATH
   - poetry run inv checkfmt