Przeglądaj źródła

Misc. build fixes

Nuwan Goonasekera 5 lat temu
rodzic
commit
a58882e978
3 zmienionych plików z 6 dodań i 3 usunięć
  1. 4 2
      .github/workflows/integration.yaml
  2. 1 0
      requirements.txt
  3. 1 1
      tox.ini

+ 4 - 2
.github/workflows/integration.yaml

@@ -22,7 +22,8 @@ jobs:
       - name: Checkout code
       - name: Checkout code
         uses: actions/checkout@v2
         uses: actions/checkout@v2
 
 
-      - uses: actions/setup-python@v2
+      - name: Setup Python
+        uses: actions/setup-python@v2
         with:
         with:
            python-version: ${{ matrix.python-version }}
            python-version: ${{ matrix.python-version }}
 
 
@@ -54,7 +55,8 @@ jobs:
       - name: Checkout code
       - name: Checkout code
         uses: actions/checkout@v2
         uses: actions/checkout@v2
 
 
-      - uses: actions/setup-python@v2
+      - name: Setup Python
+        uses: actions/setup-python@v2
         with:
         with:
            python-version: ${{ matrix.python-version }}
            python-version: ${{ matrix.python-version }}
 
 

+ 1 - 0
requirements.txt

@@ -1 +1,2 @@
+git+https://github.com/spulec/moto
 -e ".[dev]"
 -e ".[dev]"

+ 1 - 1
tox.ini

@@ -31,7 +31,7 @@ passenv =
     mock: CB_IMAGE_AWS CB_INSTANCE_TYPE_AWS CB_PLACEMENT_AWS AWS_ACCESS_KEY AWS_SECRET_KEY
     mock: CB_IMAGE_AWS CB_INSTANCE_TYPE_AWS CB_PLACEMENT_AWS AWS_ACCESS_KEY AWS_SECRET_KEY
 deps =
 deps =
     -rrequirements.txt
     -rrequirements.txt
-    coverage
+    coverage<5
 
 
 [testenv:lint]
 [testenv:lint]
 commands = flake8 cloudbridge tests setup.py
 commands = flake8 cloudbridge tests setup.py