Skip to content

Commit

Permalink
fix isort error, fix missing shell:bash
Browse files Browse the repository at this point in the history
  • Loading branch information
jgstew committed Aug 27, 2024
1 parent 73b5642 commit 152f4e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/test_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,12 @@ jobs:
- name: Install build tools
run: pip install setuptools wheel build pyinstaller
- name: Install requirements
shell: bash
run: if [ -f requirements.txt ]; then pip install -r requirements.txt; fi

- name: Read VERSION file
id: getversion
shell: bash
run: echo "$(python ./setup.py --version)"

- name: Run Tests - Source
Expand Down
2 changes: 1 addition & 1 deletion src/besapi/plugin_utilities.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
"""This is a set of utility functions for use in multiple plugins"""

import argparse
import os
import logging
import logging.handlers
import ntpath
import os
import sys


Expand Down

0 comments on commit 152f4e6

Please sign in to comment.