Skip to content

Commit

Permalink
test: updated workflows to run integration tests only on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Aviksaikat committed Jun 22, 2024
1 parent eaa9ec5 commit 81ba816
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ jobs:
- name: Install Docker CLI
run: |
if [[ "${{ matrix.os }}" == "macos-latest" ]]; then
brew install --cask docker
# brew install --cask docker
echo "Don't need docker for macOS as well"
elif [[ "${{ matrix.os }}" == "windows-latest" ]]; then
echo "Don't need docker for windows"
else
Expand All @@ -56,7 +57,7 @@ jobs:
bee-factory start --detach 1.15.0-rc2
- name: Run Tests
run: |
if [[ "${{ matrix.os }}" == "windows-latest" ]];
if [[ "${{ matrix.os }}" == "ubuntu-latest" ]];
then
hatch run test:pyest --cache-clear
else
Expand Down

0 comments on commit 81ba816

Please sign in to comment.