Skip to content

Commit

Permalink
fixed tests and dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
FabricioArendTorres committed May 1, 2024
1 parent 3e64f28 commit 52eac06
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_lint_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
docker run flowc-${{ matrix.dockerfile }} flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: docker run flowc-${{ matrix.dockerfile }} pytest --cov --cov-report=xml
run: docker run flowc-${{ matrix.dockerfile }} pytest /flowc --cov --cov-report=xml

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile-pytorch2.1.2
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ WORKDIR /app
# Copy requirements and install dependencies

# Copy the source code and install the package
COPY . /app
RUN pip install .
COPY . /flowc
RUN pip install /flowc

CMD ["/bin/bash"]

0 comments on commit 52eac06

Please sign in to comment.