Skip to content

Commit

Permalink
Add flags to upload
Browse files Browse the repository at this point in the history
  • Loading branch information
jmthomas committed Sep 3, 2022
1 parent 0767052 commit eb8aa00
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/api_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
- uses: codecov/codecov-action@v3
with:
directory: openc3-cmd-tlm-api/coverage
flags: ruby-api # See codecov.yml

script-runner-api:
if: ${{ github.actor != 'dependabot[bot]' }}
Expand Down Expand Up @@ -86,3 +87,4 @@ jobs:
- uses: codecov/codecov-action@v3
with:
directory: openc3-script-runner-api/coverage
flags: ruby-api # See codecov.yml
6 changes: 2 additions & 4 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,7 @@ jobs:
# Check container status
- name: Check container status
shell: 'script -q -e -c "bash {0}"'
run: |
docker ps
docker logs openc3_openc3-init_1
# Ensure we're connected and running
run: docker ps
# Build a test plugin for playwright and a copy so we can 'upgrade'
- name: Build plugin
shell: 'script -q -e -c "bash {0}"'
Expand Down Expand Up @@ -82,6 +79,7 @@ jobs:
- uses: codecov/codecov-action@v3
with:
directory: playwright/coverage
flags: frontend # See codecov.yml
- name: Upload test artifacts
if: always() # Upload on pass or fail
uses: actions/upload-artifact@v3
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ruby_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ jobs:
working-directory: openc3
env:
OPENC3_DEVEL: ${GITHUB_WORKSPACE}/openc3
- uses: codecov/codecov-action@v3
with:
directory: openc3/coverage
flags: ruby-backend # See codecov.yml
- name: Run unit tests without extensions
run: bundle exec rspec --tag no_ext
working-directory: openc3
Expand All @@ -48,3 +52,4 @@ jobs:
- uses: codecov/codecov-action@v3
with:
directory: openc3/coverage
flags: ruby-backend # See codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,11 @@
</template>
</v-calendar>
<v-menu
class="centered"
v-model="selectedOpen"
:close-on-content-click="false"
:activator="selectedElement"
attach=".v-calendar-daily"
>
<event-dialog
v-model="selectedOpen"
Expand All @@ -66,11 +68,8 @@
</template>

<script>
import { isValid, parse, format, getTime } from 'date-fns'
import EventDialog from '@/tools/Calendar/Dialogs/EventDialog'
import TimeFilters from '@/tools/Calendar/Filters/timeFilters.js'
import { getTimelineEvents } from '@/tools/Calendar/Filters/timelineFilters.js'
import { getChronicleEvents } from '@/tools/Calendar/Filters/chronicleFilters.js'

export default {
components: {
Expand All @@ -89,6 +88,8 @@ export default {
},
data() {
return {
x: 0,
y: 0,
selectedEvent: null,
selectedElement: null,
selectedOpen: false,
Expand Down Expand Up @@ -219,7 +220,12 @@ export default {
}
</script>

<style scoped lang="scss">
<style scoped>
.v-menu__content {
position: absolute;
top: 50% !important;
left: 50% !important;
}
.theme--dark .v-card__title,
.theme--dark .v-card__subtitle {
background-color: var(--v-secondary-darken3);
Expand Down

0 comments on commit eb8aa00

Please sign in to comment.