-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adds tests * Moves the 2014 report to its own directory under `research` * Adds a new page at `/research/2014` Contributes to #698 Signed-off-by: Nathen Harvey <[email protected]>
- Loading branch information
1 parent
0dc67bf
commit ffeb67f
Showing
11 changed files
with
62 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
title: "DORA Research: 2014" | ||
date: 2024-07-29 | ||
draft: false | ||
research_year: "2014" | ||
type: research_archives | ||
layout: single | ||
--- | ||
|
||
[![2014 State of DevOps Report](2014-state-of-devops-report.png)](2014-state-of-devops-report.pdf) | ||
|
||
The 2014 State of DevOps Report provides compelling evidence that DevOps is not just a set of technical practices but a cultural shift that can drive significant improvements in IT and organizational performance. By adopting DevOps practices and fostering a culture of collaboration and continuous improvement, organizations can achieve higher levels of productivity, profitability, and market share. | ||
|
||
Key findings of the report include: | ||
* High-performing IT organizations were twice as likely to exceed their profitability, market share, and productivity goals. | ||
* DevOps practices, such as version control and continuous delivery, are correlated with high IT performance. | ||
* Organizational culture is a strong predictor of IT and organizational performance, with high-trust cultures leading to better results. | ||
* Job satisfaction is the number one predictor of organizational performance and is highly correlated with DevOps practices and culture. | ||
* Continuous integration and continuous delivery, along with automated testing and version control, are key practices that impact IT * performance. | ||
* The longer an organization practices DevOps, the more its IT performance improves (p. 14). | ||
* A virtuous circle exists between IT performance and organizational performance, where each positively influences the other. | ||
|
||
[Download teh 2014 State of DevOps Report](2014-state-of-devops-report.pdf) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { test, expect } from '@playwright/test'; | ||
import { sidebarLinks } from '../sidebarLinks'; | ||
|
||
test.beforeEach(async ({ page }) => { | ||
await page.goto('/research/2014/'); | ||
}); | ||
|
||
test('2014 Research page has the correct title.', async ({ page }) => { | ||
await expect(page).toHaveTitle('DORA | DORA Research: 2014'); | ||
}); | ||
|
||
test('2014 Research page has the correct header.', async ({ page }) => { | ||
await expect(page.locator('h1')).toContainText('DORA Research: 2014'); | ||
}); | ||
|
||
test('2014 Research page has the correct sidebar.', async ({ page }) => { | ||
for (const sidebarLink of sidebarLinks) { | ||
await expect(page.getByRole('link', { name: sidebarLink, exact: true })).toBeVisible(); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters